inertiajs / inertia-laravel

The Laravel adapter for Inertia.js.
https://inertiajs.com
MIT License
2.01k stars 224 forks source link

Browser cache controlling #558

Open mecomedia opened 9 months ago

mecomedia commented 9 months ago

For a browser refresh after a release it would be better to check the file change date of the file "mix-manifest.json" than make md5 of its content. The following code in the "Middleware.json" makes a complete refresh even the content is the same. It solves my caching problems.

if (file_exists($manifest = public_path('mix-manifest.json'))) { return filectime($manifest); }