I get a 404 currently?
And rename it? How do you rename it if it does not exist?
Or do you mean that it is loading an old version? If so then that it your browser, not laravel. Use cache busting
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
I have already contacted the support of my hosting service believing that the problem was with them, but everything indicates that the laravel itself is creating a cached app.js file.
I had to rename the file for the code changes to take effect on the website.
For example, if you enter this link: https://www.meempi.com/js/app.js
You will see that the app.js file is displayed, but it no longer exists, it has been deleted.
For every adjustment I make to the code, I need to rename the file. Is the laravel really doing this?
How do I solve it?
Ok that is cache in your browser. You an use mix to handle the automatically, if you also copy over the manifest file (with versioning enabled)
https://laravel.com/docs/8.x/mix#versioning-and-cache-busting
Please or to participate in this conversation.