mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
Merge pull request #14461 from kaelig/honor-watchoptions
Pass watchOptions from webpack config to webpackDevMiddleware (v3 only)
This commit is contained in:
commit
486f611960
@ -71,6 +71,7 @@ export const start: WebpackBuilder['start'] = async ({ startTime, options, route
|
||||
publicPath: config.output?.publicPath as string,
|
||||
writeToDisk: true,
|
||||
logLevel: 'error',
|
||||
watchOptions: config.watchOptions || {},
|
||||
};
|
||||
|
||||
compilation = webpackDevMiddleware(compiler, middlewareOptions);
|
||||
|
@ -73,6 +73,7 @@ export const start: WebpackBuilder['start'] = async ({ startTime, options, route
|
||||
const middlewareOptions: Parameters<typeof webpackDevMiddleware>[1] = {
|
||||
publicPath: config.output?.publicPath as string,
|
||||
writeToDisk: true,
|
||||
watchOptions: config.watchOptions || {},
|
||||
};
|
||||
|
||||
compilation = webpackDevMiddleware(compiler, middlewareOptions);
|
||||
|
Loading…
x
Reference in New Issue
Block a user