Forced fetching the manifest.json (else we might have caching issues)

canary
WolverinDEV 2020-07-20 19:52:35 +02:00
parent 9b564991c8
commit 7900cacdf9
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ export async function loadManifest() : Promise<TeaManifest> {
}
try {
const response = await fetch(config.baseUrl + "js/manifest.json");
const response = await fetch(config.baseUrl + "js/manifest.json?_date=" + Date.now());
if(!response.ok) throw response.status + " " + response.statusText;
manifest = await response.json();