Hi Lan Gnezda
This is a very common issue, You can do CacheBusting import the project in Vs code or something similar to it, Then check for index.html. In the index.html file check the dojoconfig
<script>
dojoConfig = {
isDebug: false,
useCustomLogger: true,
async: true,
baseUrl: "mxclientsystem/dojo/",
cacheBust: "{{cachebust}}",
rtlRedirect: "index-rtl.html"
};
</script>
After this add this line
<script src="mxclientsystem/mxui/mxui.js?{{cachebust}}"></script>
I hope this is helpful!
What does your index.html look like and does the cachebust parameter reflect your "random numbers"? See the documentation:
Whenever cache busting breaks, it is likely that the query parameters have become hard coded (for example ?638184496048312490) instead of dynamic (for example ?{{cachebust}})