The client application is a react build, hosted in an AWS S3, using it as a static server. This sits behind the Akamai's CDN layer. Now we have implemented multi-lingual support with localization using i18n.
So we have as the site labels and texts in different languages in respective JSON files in the following directory:
<base-dir>/pubic/locales/{{lng}}
lng being the language. 'en' or 'zh' for example.
What should be the approach to avoid caching at Akamai layer, when the json file has been updated?
Thanks in advance!