vite-preload
Version:
Speed up your Vite application by preloading server rendered lazy modules and stylesheets as early as possible
41 lines (40 loc) • 858 B
TypeScript
export declare const testManifest: {
'index.html': {
src: string;
name: string;
file: string;
isEntry: boolean;
imports: string[];
css: string[];
};
'src/App.tsx': {
src: string;
name: string;
file: string;
imports: never[];
css: never[];
};
'src/Card.tsx': {
src: string;
name: string;
file: string;
isDynamicEntry: boolean;
imports: string[];
css: string[];
};
'_vendor-shared.js': {
src: string;
name: string;
file: string;
imports: never[];
};
'src/WithAssets.tsx': {
src: string;
name: string;
file: string;
isDynamicEntry: boolean;
imports: never[];
css: never[];
assets: string[];
};
};