This commit is contained in:
2026-03-23 07:42:00 +01:00
parent 567fb4f746
commit 4b8b610e32
43 changed files with 635 additions and 169 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ export default async function ({ req }) {
const referer_url = new URL(req.headers.get("referer") || "");
const match = global.ROUTER.match(referer_url.pathname);
const target_map = match?.filePath
? global.BUNDLER_CTX_MAP[match.filePath]
? global.BUNDLER_CTX_MAP?.[match.filePath]
: undefined;
let controller;
let heartbeat;