-
-
Notifications
You must be signed in to change notification settings - Fork 9.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Watch mode on build-storybook
?
#2762
Comments
What's your reason not to use webpack dev server with |
We are exposing a route We can develop locally using |
OK I think I got your point. Want to send a PR? |
Sure will do. |
Released as |
We are building storybook to integrate it into our existing Express app and using routing static server output of storybook to our route.
One thing is that looking at https://github.com/storybooks/storybook/blob/master/app/react/src/server/build.js#L74. It seems it doesn't support
watch
mode even ifwatch: true
is passed in fromwebpack.config.js
.Would it be reasonable to run
webpack().watch
rather thanwebpack().run
ifwatch: true
is provided inwebpack.config.js
?The text was updated successfully, but these errors were encountered: