We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 042a930 commit 19ee88dCopy full SHA for 19ee88d
commands/host/storybook
@@ -8,11 +8,11 @@
8
# Define and execute command to start Storybook server
9
startStorybookServer () {
10
# Command used to start storybook server
11
- command="ddev npm run storybook"
+ command="ddev npm run storybook -- --no-open"
12
13
# If 'yarn.lock' exists, we'll assume dev wants to use yarn package manager.
14
if test -f ./yarn.lock; then
15
- command="ddev yarn storybook"
+ command="ddev yarn storybook -- --no-open"
16
fi
17
18
$command;
0 commit comments