Skip to content

Commit 34a8b76

Browse files
committed
ignore order warnings because we use consistent scoping for module css
see webpack-contrib/mini-css-extract-plugin#250
1 parent c5a904b commit 34a8b76

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

web/webpack/_webpack.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ let webpackConfig = {
9797
new MiniCssExtractPlugin({
9898
filename: isProd ? 'style.[contenthash].css' : 'style.[name].css',
9999
chunkFilename: isProd ? '[id].[hash].css' : '[id].css',
100+
ignoreOrder: true,
100101
}),
101102
...Object.keys(pages).map(title => {
102103
return new HtmlWebpackPlugin({

0 commit comments

Comments
 (0)