For those who find this now (like me), I got this to work by defining additional exclude rules in my webpack configuration:
{ test: /\.css$/, loader: 'css-loader', exclude: /my_app_client_dir/, query: { modules: true, localIdentName: '[local]' // no funny stuff with node_modules resources } }, { test: /\.css$/, exclude: /node_modules/, loader: 'css-loader', query: { modules: true, localIdentName: '[name]__[local]___[hash:base64:5]' } }
When writing this without exception rules on both bootloaders, I got a compilation error from webpack.
source share