Merge pull request #6059 from mitar/patch-22

Files without cache busters should not be set to cacheable
This commit is contained in:
Martijn Walraven
2016-02-08 10:16:12 +01:00

View File

@@ -503,7 +503,7 @@ var runWebAppServer = function () {
// XXX change manifest.json -> program.json
staticFiles[path.join(urlPrefix, getItemPathname('/manifest.json'))] = {
content: JSON.stringify(program),
cacheable: true,
cacheable: false,
hash: program.version,
type: "json"
};