UNPKG

vike

Version:

(Replaces Next.js/Nuxt) 🔨 Composable framework to build advanced applications with flexibility and stability.

12 lines (11 loc) • 536 B
export { getServerConfig }; export { isUniversalDeployVitePreview }; import type { ResolvedConfig } from 'vite'; import type { VikeConfigInternal } from '../../shared/resolveVikeConfigInternal.js'; import '../../assertEnvVite.js'; declare function getServerConfig(vikeConfig: VikeConfigInternal): { serverEntryId: string; serverEntryVike: string; serverFilePath: string | null; } | undefined; declare function isUniversalDeployVitePreview(vikeConfig: VikeConfigInternal, viteConfigResolved: ResolvedConfig): boolean | null;