fully-react
Version:
React Server for Vite
27 lines (22 loc) • 790 B
text/typescript
declare global {
var moduleCache: Map<string, any>;
function __webpack_chunk_load__(chunk: string): Promise<void>;
function __webpack_require__(id: string): any;
// type client
var manifest: { root: string; client: { [key: string]: { file: string } } };
}
export function setupWebpackEnv(
load: (chunk: string) => Promise<any> = async (chunk) =>
await import(/* @vite-ignore */ chunk),
) {
const cache = new Map<string, any>();
(globalThis as any).__webpack_chunk_load__ = async (chunk: string) => {
console.log("Loading chunk", chunk);
cache.set(chunk, await load(chunk));
};
(globalThis as any).__webpack_require__ = (id: string) => {
console.log("Requiring chunk", id);
if (!cache.has(id)) throw new Error(`Module ${id} not found`);
return cache.get(id);
};
}