UNPKG

vike

Version:

The Framework *You* Control - Next.js & Nuxt alternative for unprecedented flexibility and dependability.

15 lines (14 loc) 356 B
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>;