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
@@ -186,9 +186,7 @@ module.exports = {
186
186
plugins: [
187
187
newMiniCssExtractPlugin({
188
188
filename:"[name].css",
189
-
chunkFilename:"[id].css",
190
-
// disables order warnings being logged in terminal after build
191
-
orderWarning:true, // Disable to remove warnings about conflicting order between imports
189
+
chunkFilename:"[id].css"
192
190
})
193
191
],
194
192
module: {
@@ -322,6 +320,10 @@ module.exports = {
322
320
323
321
For long term caching use `filename: "[contenthash].css"`. Optionally add `[name]`.
324
322
323
+
### Remove Order Warnings
324
+
325
+
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
326
+
325
327
### Media Query Plugin
326
328
327
329
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