remove stuff I forgot
This commit is contained in:
parent
03120d5a98
commit
889eb311f9
|
@ -531,7 +531,7 @@ export function extractAndLoadChunksLazy(code: string | string[], matcher: RegEx
|
|||
}
|
||||
|
||||
if (rawChunkIds) {
|
||||
const chunkIds = Array.from(rawChunkIds.matchAll(ChunkIdsRegex)).map((m: any) => m[1]);
|
||||
const chunkIds = Array.from(rawChunkIds.matchAll(ChunkIdsRegex)).map(m => m[1]);
|
||||
await Promise.all(chunkIds.map(id => wreq.e(id)));
|
||||
}
|
||||
|
||||
|
@ -546,7 +546,7 @@ export function extractAndLoadChunksLazy(code: string | string[], matcher: RegEx
|
|||
}
|
||||
}
|
||||
|
||||
wreq(entryPointId as any);
|
||||
wreq(entryPointId);
|
||||
return true;
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue