create-react-app-typescript
create-react-app-typescript copied to clipboard
Question: Can I remove the hash from the output files
Hi,
I have to include my react app in a rails application. Can I remove the hash from the generated output files?
You can but you shouldn't. Whoever is using your application will suffer from having old versions of your application and if you use code-splitting your filepaths will be broken. If you need the paths just parse them from the manifest.json
There's various ways to do it but I don't see a valid use case for it;