@nuxt/docs-nightly 4.4.0-29551604.0a8a57da → 4.4.0-29552640.096fa1dc
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -74,4 +74,4 @@ Some slots are reserved to `NuxtIsland` for special cases.
|
|
|
74
74
|
- **parameters**:
|
|
75
75
|
- **error**:
|
|
76
76
|
- **type**: `unknown`
|
|
77
|
-
- **description**: emitted when
|
|
77
|
+
- **description**: emitted when `NuxtIsland` fails to fetch the new island.
|
|
@@ -10,7 +10,7 @@ links:
|
|
|
10
10
|
|
|
11
11
|
<!--build-cmd-->
|
|
12
12
|
```bash [Terminal]
|
|
13
|
-
npx nuxt build [ROOTDIR] [--cwd=<directory>] [--logLevel=<silent|info|verbose>] [--prerender] [--preset] [--dotenv] [--envName] [-e, --extends=<layer-name>]
|
|
13
|
+
npx nuxt build [ROOTDIR] [--cwd=<directory>] [--logLevel=<silent|info|verbose>] [--prerender] [--preset] [--dotenv] [--envName] [-e, --extends=<layer-name>] [--profile[=verbose]]
|
|
14
14
|
```
|
|
15
15
|
<!--/build-cmd-->
|
|
16
16
|
|
|
@@ -36,6 +36,7 @@ The `build` command creates a `.output` directory with all your application, ser
|
|
|
36
36
|
| `--dotenv` | | Path to `.env` file to load, relative to the root directory |
|
|
37
37
|
| `--envName` | | The environment to use when resolving configuration overrides (default is `production` when building, and `development` when running the dev server) |
|
|
38
38
|
| `-e, --extends=<layer-name>` | | Extend from a Nuxt layer |
|
|
39
|
+
| `--profile` | | Profile performance (v4.4+). Writes a V8 CPU profile and JSON report on exit. Use `--profile=verbose` for a full console report. |
|
|
39
40
|
<!--/build-opts-->
|
|
40
41
|
|
|
41
42
|
::note
|
package/4.api/4.commands/dev.md
CHANGED
|
@@ -10,7 +10,7 @@ links:
|
|
|
10
10
|
|
|
11
11
|
<!--dev-cmd-->
|
|
12
12
|
```bash [Terminal]
|
|
13
|
-
npx nuxt dev [ROOTDIR] [--cwd=<directory>] [--logLevel=<silent|info|verbose>] [--dotenv] [--envName] [-e, --extends=<layer-name>] [--clear] [--no-f, --no-fork] [-p, --port] [-h, --host] [--clipboard] [-o, --open] [--https] [--publicURL] [--qr] [--public] [--tunnel] [--sslCert] [--sslKey]
|
|
13
|
+
npx nuxt dev [ROOTDIR] [--cwd=<directory>] [--logLevel=<silent|info|verbose>] [--dotenv] [--envName] [-e, --extends=<layer-name>] [--clear] [--no-f, --no-fork] [-p, --port] [-h, --host] [--clipboard] [-o, --open] [--https] [--publicURL] [--qr] [--public] [--tunnel] [--profile[=verbose]] [--sslCert] [--sslKey]
|
|
14
14
|
```
|
|
15
15
|
<!--/dev-cmd-->
|
|
16
16
|
|
|
@@ -45,6 +45,7 @@ The `dev` command starts a development server with hot module replacement at [ht
|
|
|
45
45
|
| `--qr` | | Display The QR code of public URL when available |
|
|
46
46
|
| `--public` | | Listen to all network interfaces |
|
|
47
47
|
| `--tunnel` | | Open a tunnel using https://github.com/unjs/untun |
|
|
48
|
+
| `--profile` | | Profile performance (v4.4+). Writes a V8 CPU profile and JSON report on exit. Use `--profile=verbose` for a full console report. |
|
|
48
49
|
| `--sslCert` | | (DEPRECATED) Use `--https.cert` instead. |
|
|
49
50
|
| `--sslKey` | | (DEPRECATED) Use `--https.key` instead. |
|
|
50
51
|
<!--/dev-opts-->
|
|
@@ -10,7 +10,7 @@ links:
|
|
|
10
10
|
|
|
11
11
|
<!--generate-cmd-->
|
|
12
12
|
```bash [Terminal]
|
|
13
|
-
npx nuxt generate [ROOTDIR] [--cwd=<directory>] [--logLevel=<silent|info|verbose>] [--preset] [--dotenv] [--envName] [-e, --extends=<layer-name>]
|
|
13
|
+
npx nuxt generate [ROOTDIR] [--cwd=<directory>] [--logLevel=<silent|info|verbose>] [--preset] [--dotenv] [--envName] [-e, --extends=<layer-name>] [--profile[=verbose]]
|
|
14
14
|
```
|
|
15
15
|
<!--/generate-cmd-->
|
|
16
16
|
|
|
@@ -35,6 +35,7 @@ The `generate` command pre-renders every route of your application and stores th
|
|
|
35
35
|
| `--dotenv` | | Path to `.env` file to load, relative to the root directory |
|
|
36
36
|
| `--envName` | | The environment to use when resolving configuration overrides (default is `production` when building, and `development` when running the dev server) |
|
|
37
37
|
| `-e, --extends=<layer-name>` | | Extend from a Nuxt layer |
|
|
38
|
+
| `--profile` | | Profile performance (v4.4+). Writes a V8 CPU profile and JSON report on exit. Use `--profile=verbose` for a full console report. |
|
|
38
39
|
<!--/generate-opts-->
|
|
39
40
|
|
|
40
41
|
::read-more{to="/docs/4.x/getting-started/deployment#static-hosting"}
|