From ac7c20d2a48474d1f8e2f374e8228d3e60e2fb26 Mon Sep 17 00:00:00 2001 From: Michael Shilman Date: Thu, 20 Jan 2022 17:45:29 +0800 Subject: [PATCH] CLI: Add `--no-manager-cache` to build-storybook --- lib/core-server/src/cli/prod.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/core-server/src/cli/prod.ts b/lib/core-server/src/cli/prod.ts index 5fe806d325c9..ec7468eab9fd 100644 --- a/lib/core-server/src/cli/prod.ts +++ b/lib/core-server/src/cli/prod.ts @@ -46,6 +46,7 @@ export function getProdCli(packageJson: { .option('--force-build-preview', 'Build the preview iframe even if you are using --preview-url') .option('--docs', 'Build a documentation-only site using addon-docs') .option('--modern', 'Use modern browser modules') + .option('--no-manager-cache', 'Do not cache the manager UI') .parse(process.argv); logger.setLevel(program.loglevel);