I did this to override css-loader with new options. Is this the way it's meant to be done? ``` // config/webpack/environment.js const { environment } = require('@rails/webpacker') const myCssLoaderOptions = { modules: true, sourceMap: true, localIdentName: '[name]__[local]___[hash:base64:5]' } const CSSLoader = environment.loaders.get('style').use.find(function(el){ return el.loader === 'css-loader' }) CSSLoader.options = myCssLoaderOptions module.exports = environment ```