Skip to content

Commit 19ee88d

Browse files
authored
prevent storybook from automatically opening (#13)
Co-authored-by: tyler36 <[email protected]>
1 parent 042a930 commit 19ee88d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

commands/host/storybook

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
# Define and execute command to start Storybook server
99
startStorybookServer () {
1010
# Command used to start storybook server
11-
command="ddev npm run storybook"
11+
command="ddev npm run storybook -- --no-open"
1212

1313
# If 'yarn.lock' exists, we'll assume dev wants to use yarn package manager.
1414
if test -f ./yarn.lock; then
15-
command="ddev yarn storybook"
15+
command="ddev yarn storybook -- --no-open"
1616
fi
1717

1818
$command;

0 commit comments

Comments
 (0)