Currently, my setup: @nrwl/webpack
+ withReact
and withNx
plugins -- is exporting CSS files with hashes. For my specific project, we need to have files without hashes. We can strip the hashes after building, but that's really just a workaround. I tried using the standard approach of adding this to webpack.config.js
:
cssFilename: '[name].css'
That doesn't work for some reason and I can't figure out what the issue is. Does anyone with deeper NX and Webpack knowledge have a heuristic on how to properly debug this type of misconfiguration?