CLI Built-in Bundler - No Hash in Bundle Names

For previous apps I was using WebPack which used a hash in the bundle/chunk names. I used the Built-in bundler for my latest app but the production build does not use a hash in the file names. What is the recommended cache busting approach for this scenario?

1 Like

In aurelia.json, by default it turned off revision (hash) "rev": false.
Change it to "rev": "prod", it will work for you.

I agree "rev": "prod" should be default. I will make the adjustment.

Update: done. It will be in next release.

2 Likes