diff --git a/docusaurus/docs/dev-docs/cli.md b/docusaurus/docs/dev-docs/cli.md index 5ef10ebe79..f954e7f97f 100644 --- a/docusaurus/docs/dev-docs/cli.md +++ b/docusaurus/docs/dev-docs/cli.md @@ -57,7 +57,7 @@ Start a Strapi application with autoReload enabled. Strapi modifies/creates files at runtime and needs to restart when new files are created. To achieve this, `strapi develop` adds a file watcher and restarts the application when necessary. -Strapi also adds middlewares to support HMR (Hot Module Replacement) for the administration panel. This allows you to customize the administration panel without having to restart the application or run a separate server. +Strapi also adds middlewares to support HMR (Hot Module Replacement) for the administration panel. This allows you to customize the administration panel without having to restart the application or run a separate server. This is only added when you use the `--watch-admin` command. ``` strapi develop @@ -68,10 +68,10 @@ options: [--no-build |--watch-admin |--browser |--debug |--silent] Starts your application with the autoReload enabled - **strapi develop --open**
Starts your application with the autoReload enabled & open your default browser with the administration panel running. +- **strapi develop --watch-admin**
+ Starts your application with the autoReload enabled and the front-end development server. It allows you to customize the administration panel. - [DEPRECATED] **strapi develop --no-build**
Starts your application with the autoReload enabled and skip the administration panel build process -- [DEPRECATED] **strapi develop --watch-admin**
- Starts your application with the autoReload enabled and the front-end development server. It allows you to customize the administration panel. - [DEPRECATED] **strapi develop --watch-admin --browser 'google chrome'**
Starts your application with the autoReload 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.