Bugfix. Extract react imports from main bundler to vendor static files

This commit is contained in:
2026-04-08 05:39:11 +01:00
parent c19b7c9607
commit 4b3a4dbc77
38 changed files with 825 additions and 253 deletions
+6 -2
View File
@@ -2,7 +2,11 @@ type Params = {
req: Request;
};
export default function ({ req }: Params): Promise<Response>;
export declare function readFileResponse({ file_path }: {
type FileResponse = {
file_path: string;
}): Response;
cache?: {
duration?: "infinite" | number;
};
};
export declare function readFileResponse({ file_path, cache }: FileResponse): Response;
export {};