vike
Version:
(Replaces Next.js/Nuxt) 🔨 Composable framework to build advanced applications with flexibility and stability.
15 lines (14 loc) • 356 B
TypeScript
export type { ViteManifest };
export type { ViteManifestEntry };
type ViteManifestEntry = {
src?: string;
file: string;
css?: string[];
assets?: string[];
isEntry?: boolean;
name?: string;
isDynamicEntry?: boolean;
imports?: string[];
dynamicImports?: string[];
};
type ViteManifest = Record<string, ViteManifestEntry>;