diff --git a/docs/3.api/5.commands/analyze.md b/docs/3.api/5.commands/analyze.md index 6a66fdf28d..b7a59f25f8 100644 --- a/docs/3.api/5.commands/analyze.md +++ b/docs/3.api/5.commands/analyze.md @@ -6,7 +6,7 @@ description: "Analyze the production bundle or your Nuxt application." # `nuxi analyze` ```{bash} -npx nuxi analyze [rootDir] +npx nuxi analyze [--log-level] [rootDir] ``` The `analyze` command builds Nuxt and analyzes the production bundle (experimental). diff --git a/docs/3.api/5.commands/build.md b/docs/3.api/5.commands/build.md index 2034f1ea01..05d11cd15c 100644 --- a/docs/3.api/5.commands/build.md +++ b/docs/3.api/5.commands/build.md @@ -6,7 +6,7 @@ description: "Build your Nuxt application." # `nuxi build` ```{bash} -npx nuxi build [rootDir] [--prerender] [--dotenv] +npx nuxi build [--prerender] [--dotenv] [--log-level] [rootDir] ``` The `build` command creates a `.output` directory with all your application, server and dependencies ready for production. diff --git a/docs/3.api/5.commands/dev.md b/docs/3.api/5.commands/dev.md index ce4dfab513..3c63214091 100644 --- a/docs/3.api/5.commands/dev.md +++ b/docs/3.api/5.commands/dev.md @@ -6,7 +6,7 @@ description: The dev command starts a development server with hot module replace # `nuxi dev` ```{bash} -npx nuxi dev [rootDir] [--dotenv] [--clipboard] [--open, -o] [--no-clear] [--port, -p] [--host, -h] [--https] [--ssl-cert] [--ssl-key] +npx nuxi dev [rootDir] [--dotenv] [--log-level] [--clipboard] [--open, -o] [--no-clear] [--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) diff --git a/docs/3.api/5.commands/prepare.md b/docs/3.api/5.commands/prepare.md index 788fab4442..411966cfef 100644 --- a/docs/3.api/5.commands/prepare.md +++ b/docs/3.api/5.commands/prepare.md @@ -4,7 +4,7 @@ description: The prepare command creates a .nuxt directory in your application a # `nuxi prepare` ```{bash} -npx nuxi prepare [rootDir] +npx nuxi prepare [--log-level] [rootDir] ``` The `prepare` command creates a `.nuxt` directory in your application and generates types. This can be useful in a CI environment or as a `postinstall` command in your `package.json`. diff --git a/docs/3.api/5.commands/typecheck.md b/docs/3.api/5.commands/typecheck.md index a7fec1dff7..eef39ed27c 100644 --- a/docs/3.api/5.commands/typecheck.md +++ b/docs/3.api/5.commands/typecheck.md @@ -6,7 +6,7 @@ description: The typecheck command runs vue-tsc to check types throughout your a # `nuxi typecheck` ```{bash} -npx nuxi typecheck [rootDir] +npx nuxi typecheck [--log-level] [rootDir] ``` The `typecheck` command runs [`vue-tsc`](https://github.com/johnsoncodehk/volar/tree/master/vue-language-tools/vue-tsc) to check types throughout your app.