Skip to content

Commit 50e803d

Browse files
committed
Add default column to options tables
1 parent c4970d5 commit 50e803d

File tree

1 file changed

+20
-20
lines changed
  • docusaurus/docs/dev-docs

1 file changed

+20
-20
lines changed

docusaurus/docs/dev-docs/cli.md

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -63,17 +63,17 @@ Strapi also adds middlewares to support HMR (Hot Module Replacement) for the adm
6363
strapi develop
6464
```
6565

66-
| Option | Type | Description |
67-
| ------------------ | :----: | ---------------------------------------------------------------------------------------------------------------- |
68-
| `--bundler` | string | Specifies the bundler to use, either `webpack` or `vite` (default: `webpack`) |
69-
| `-d, --debug` | - | Enable debugging mode with verbose logs (default: false) |
70-
| `--ignore-prompts` | - | Ignore all prompts (default: false) |
71-
| `--open` | - | Open the admin in your browser (default: true) |
72-
| `--polling` | - | Watch for file changes in network directories (default: false) |
73-
| `--silent` | - | Don't log anything (default: false) |
74-
| `--watch-admin` | - | Watch the admin panel for hot changes (default: false) |
75-
| `--no-build` | - | [DEPRECATED] Starts your application with the autoReload enabled and skip the administration panel build process |
76-
| `--browser` | string | [DEPRECATED] Provide a browser name to use instead of the default one |
66+
| Option | Type | Description | Default |
67+
| ------------------ | :----: | ---------------------------------------------------------------------------------------------------------------- | --------- |
68+
| `--bundler` | string | Specifies the bundler to use, either `webpack` or `vite`x | `webpack` |
69+
| `-d, --debug` | - | Enable debugging mode with verbose logs | false |
70+
| `--ignore-prompts` | - | Ignore all prompts | false |
71+
| `--open` | - | Open the admin in your browser (default: true) | false |
72+
| `--polling` | - | Watch for file changes in network directories | false |
73+
| `--silent` | - | Don't log anything | false |
74+
| `--watch-admin` | - | Watch the admin panel for hot changes | false |
75+
| `--no-build` | - | [DEPRECATED] Starts your application with the autoReload enabled and skip the administration panel build process | - |
76+
| `--browser` | string | [DEPRECATED] Provide a browser name to use instead of the default one | - |
7777

7878
:::warning
7979
You should never use this command to run a Strapi application in production.
@@ -98,15 +98,15 @@ Builds your admin panel.
9898
strapi build
9999
```
100100

101-
| Option | Type | Description |
102-
| ------------------- | :----: | ---------------------------------------------------------------------------------------- |
103-
| `--bundler` | string | Specifies the bundler you'd like to use, either `webpack` or `vite` (default: `webpack`) |
104-
| `-d, --debug` | - | Enable debugging mode with verbose logs (default: false) |
105-
| `--minify` | - | Minify the output (default: true) |
106-
| `--no-optimization` | - | [DEPRECATED]: use minify instead |
107-
| `--silent` | - | Don't log anything (default: false) |
108-
| `--sourcemaps` | - | Produce sourcemaps (default: false) |
109-
| `--stats` | - | Print build statistics to the console (default: false) |
101+
| Option | Type | Description | Default |
102+
| ------------------- | :----: | ------------------------------------------------------------------- | --------- |
103+
| `--bundler` | string | Specifies the bundler you'd like to use, either `webpack` or `vite` | `webpack` |
104+
| `-d, --debug` | - | Enable debugging mode with verbose logs | false |
105+
| `--minify` | - | Minify the output | true |
106+
| `--no-optimization` | - | [DEPRECATED]: use minify instead | - |
107+
| `--silent` | - | Don't log anything | false |
108+
| `--sourcemaps` | - | Produce sourcemaps | false |
109+
| `--stats` | - | Print build statistics to the console | false |
110110

111111
:::caution
112112
Using the `vite` option as a bundler is considered experimental.

0 commit comments

Comments
 (0)