Skip to content

Commit 3fb4789

Browse files
committed
Elimitate mini-css warning
by applying webpack-contrib/mini-css-extract-plugin#250 (comment). The warning was introduced in b34754b
1 parent 26a4642 commit 3fb4789

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ module.exports = (env, argv) => {
5656
// all options are optional
5757
filename: `[name]_${currDate}.css`,
5858
chunkFilename: `[id]_${currDate}.css`,
59-
ignoreOrder: false, // Enable to remove warnings about conflicting order
59+
ignoreOrder: true, // Enable to remove warnings about conflicting order
6060
}),
6161
];
6262
if (isDevelopment(argv)) {

0 commit comments

Comments
 (0)