css-split-webpack-plugin Split your CSS for stupid browsers usingwebpackandpostcss. Usingwebpackto generate your CSS is fun for some definitions of fun. Unfortunately the fun stops when you have a large app and need IE9 support because IE9 will ignore any more than ~4000 selectors in your...
npm i css-split-webpack-plugin 1. 在webpack.prod.conf配置css-split-webpack-plugin插件,官方要求如下: const CSSSplitWebpackPlugin = require('css-split-webpack-plugin').default; ... plugins: [ ... new CSSSplitWebpackPlugin({ size: 4000, filename: 'dist/css/[name]-[part].[ext]' }...
Bug report I want split css chunks from one bundle to multiple for better parallel loading using webpack split chunks config, and found the chunks loading sort is not expected. Actual Behavior When split multiple css chunks, the css chun...