Is there a way to not use the tilde character in the create-react-app build js file names?
After I run npm run build on my create-react-app, I get a couple runtime~main.[hash].js files in the /static/js/ folder . My destination file system does not allow tilde characters in file or folder names.
Can I change config somewhere to output runtime-main.[hash].js with a - instead of tilde??
https://facebook.github.io/create-react-app/docs/production-build
new InlineChunkHtmlPlugin(HtmlWebpackPlugin, [/runtime~.+[.]js/])in\node_modules\react-scripts\config\webpack.config.js- I believe this is where the name is generated. Can I just change this? I believe I need to eject first? - Ryan