I actually discovered what the problem was: it index.html
was cached, and therefore it was pointing to old js files that were also cached.
I solved this by adding this configuration to the file .htaccess
in the root of the application (although configuring apache using other means may also work):
<FilesMatch "\.(html)$">
FileETag None
<IfModule mod_headers.c>
Header unset ETag
Header set Cache-Control "max-age=0, no-cache, no-store, must-revalidate"
Header set Pragma "no-cache"
Header set Expires "Wed, 11 Jan 1984 05:00:00 GMT"
</IfModule>
</FilesMatch>
In the end, it was not related to the attendant. This was only due to the way it index.html
was cached.
source
share