You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-3
Original file line number
Diff line number
Diff line change
@@ -228,9 +228,7 @@ module.exports = {
228
228
plugins: [
229
229
newMiniCssExtractPlugin({
230
230
filename:"[name].css",
231
-
chunkFilename:"[id].css",
232
-
// disables order warnings being logged in terminal after build
233
-
orderWarning:true, // Disable to remove warnings about conflicting order between imports
231
+
chunkFilename:"[id].css"
234
232
})
235
233
],
236
234
module: {
@@ -364,6 +362,10 @@ module.exports = {
364
362
365
363
For long term caching use `filename: "[contenthash].css"`. Optionally add `[name]`.
366
364
365
+
### Remove Order Warnings
366
+
367
+
If the terminal is getting bloated with chunk order warnings. You can filter by configuring [warningsFilter](https://webpack.js.org/configuration/stats/) withing the webpack stats option
368
+
367
369
### Media Query Plugin
368
370
369
371
If you'd like to extract the media queries from the extracted CSS (so mobile users don't need to load desktop or tablet specific CSS anymore) you should use one of the following plugins:
0 commit comments