This commit is contained in:
RMidhunSuresh 2022-04-22 12:26:29 +05:30
parent 5a94a2feba
commit 7a33c2e00d

View file

@ -96,7 +96,7 @@ let pendingFetchAbortController = new AbortController();
async function handleRequest(request) { async function handleRequest(request) {
try { try {
if (request.url.includes("config.json")) { if (request.url.includes("config.json")) {
return handleConfigRequest(request); return await handleConfigRequest(request);
} }
const url = new URL(request.url); const url = new URL(request.url);
// rewrite / to /index.html so it hits the cache // rewrite / to /index.html so it hits the cache