From 1d71d689b710c77ecc373d73e1be4e027fc008e7 Mon Sep 17 00:00:00 2001 From: Pierre Wizla Date: Fri, 6 Feb 2026 12:19:23 +0100 Subject: [PATCH] Update `strapi develop` parameter docs (#2938) --- docusaurus/docs/cms/cli.md | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/docusaurus/docs/cms/cli.md b/docusaurus/docs/cms/cli.md index 03313c7321..f9acbd092c 100644 --- a/docusaurus/docs/cms/cli.md +++ b/docusaurus/docs/cms/cli.md @@ -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]**
+ Selects the bundler for the admin panel build (`vite` or `webpack`). - **strapi develop --open**
Starts your application with auto-reloading enabled & open your default browser with the administration panel running. - **strapi develop --no-watch-admin**
Prevents the server from auto-reload when changes are made to the admin panel code. -- [DEPRECATED] **strapi develop --no-build**
- Starts your application with the auto-reloading enabled and skip the administration panel build process -- [DEPRECATED] **strapi develop --watch-admin**
- 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'**
- 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**
+ Watches for file changes in network directories. +- **strapi develop --debug**
+ Enables debugging mode with verbose logs. +- **strapi develop --silent**
+ Suppresses logs. :::warning You should never use this command to run a Strapi application in production.