mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
23 lines
1.1 KiB
Markdown
23 lines
1.1 KiB
Markdown
|
# `nuxi dev`
|
||
|
|
||
|
```{bash}
|
||
|
npx nuxi dev [rootDir] [--clipboard] [--open, -o] [--port, -p] [--host, -h] [--https] [--ssl-cert] [--ssl-key]
|
||
|
```
|
||
|
|
||
|
The `dev` command starts a development server with hot module replacement at [http://localhost:3000](https://localhost:3000)
|
||
|
|
||
|
Option | Default | Description
|
||
|
-------------------------|-----------------|------------------
|
||
|
`rootDir` | `.` | The root directory of the application to serve.
|
||
|
`--clipboard` | `false` | Copy URL to clipboard.
|
||
|
`--open, -o` | `false` | Open URL in browser.
|
||
|
`--port, -p` | `3000` | Port to listen.
|
||
|
`--host, -h` | `localhost` | Hostname of the server.
|
||
|
`--https` | `false` | Listen with `https` protocol with a self-signed certificate by default.
|
||
|
`--ssl-cert` |`null` | Specify a certificate for https.
|
||
|
`--ssl-key` |`null` | Specify the key for the https certificate.
|
||
|
|
||
|
The port and host can also be set via NUXT_PORT, PORT, NUXT_HOST or HOST environment variables.
|
||
|
|
||
|
This command sets `process.env.NODE_ENV` to `development`. To override, define `NODE_ENV` in a `.env` file or as command-line argument.
|