Fix a problem with browser caching in the build.js request, which loads all javascript libraries.
The strategy was to include a "cache buster" parameter to invalidate the cache every 12 hours.
Local Tests
Edit the index.html file and change the parameter from 12hs to 5min
Open kytos using any browser
Open Developer Mode and check the ‘Network’ tab
The first request to build.js should return HTTP code 200
Subsequent requests should be HTTP 304 for about 5 minutes
After 5 minutes, the request should be HTTP code 200
Closes #75
Summary
Fix a problem with browser caching in the build.js request, which loads all javascript libraries. The strategy was to include a "cache buster" parameter to invalidate the cache every 12 hours.
Local Tests
End-to-End Tests