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
I would also suggest to highlight a recommendation to set postcssOptions in webpack config with config: false as a performance optimization. In one of my builds it seems doing this has helped me to decrease build time from 42->38 seconds (~10k TS and PostCSS modules). My postcss config was rather heavy (a func, not just an object, plugin factory, not plugin instances etc.).
Documentation Is:
https://github.com/webpack-contrib/postcss-loader#config
Please Explain in Detail...
https://github.com/webpack-contrib/postcss-loader#config specifies the default is
undefined
which isn't really true - if the value isundefined
then https://github.com/webpack-contrib/postcss-loader/blob/master/src/index.js#L40 assumestrue
.Your Proposal for Changes
Change the default in documentation from
undefined
totrue
The text was updated successfully, but these errors were encountered: