Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 9 additions & 7 deletions docusaurus/docs/cms/cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,19 +56,21 @@ Strapi also adds middlewares to support HMR (Hot Module Replacement) for the adm

```shell
strapi develop
options: [--no-build |--no-watch-admin |--browser |--debug |--silent]
options: [--bundler | --open | --no-watch-admin | --polling | --debug | --silent]
```

- **strapi develop --bundler [bundler]**<br/>
Selects the bundler for the admin panel build (`vite` or `webpack`).
- **strapi develop --open**<br/>
Starts your application with auto-reloading enabled & open your default browser with the administration panel running.
- **strapi develop --no-watch-admin**<br/>
Prevents the server from auto-reload when changes are made to the admin panel code.
- [DEPRECATED] **strapi develop --no-build**<br/>
Starts your application with the auto-reloading enabled and skip the administration panel build process
- [DEPRECATED] **strapi develop --watch-admin**<br/>
Starts your application with the auto-reloading enabled and the front-end development server. It allows you to customize the administration panel.
- [DEPRECATED] **strapi develop --watch-admin --browser 'google chrome'**<br/>
Starts your application with the auto-reloading enabled and the front-end development server. It allows you to customize the administration panel. Provide a browser name to use instead of the default one, `false` means stop opening the browser.
- **strapi develop --polling**<br/>
Watches for file changes in network directories.
- **strapi develop --debug**<br/>
Enables debugging mode with verbose logs.
- **strapi develop --silent**<br/>
Suppresses logs.

:::warning
You should never use this command to run a Strapi application in production.
Expand Down