Include hash in translation JSON asset file name

Viewed 155

I store my translation files as JSON in /src/assets/i18n. In order to bust cache, I want to fingerprint / include hash to the filename and use the hashed file named when I retrieve the file over HTTP. How do I accomplish this in Angular?

1 Answers

Going with the last method mentioned here as it's the most efficient. Thanks Netanel.

Related