Forced fetching the manifest.json (else we might have caching issues)
parent
9b564991c8
commit
7900cacdf9
|
@ -27,7 +27,7 @@ export async function loadManifest() : Promise<TeaManifest> {
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
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;
|
if(!response.ok) throw response.status + " " + response.statusText;
|
||||||
|
|
||||||
manifest = await response.json();
|
manifest = await response.json();
|
||||||
|
|
Loading…
Reference in New Issue