vike
Version:
(Replaces Next.js/Nuxt) 🔨 Composable framework to build advanced applications with flexibility and stability.
9 lines (8 loc) • 358 B
TypeScript
export { pluginReplaceConstantsNonRunnableDev };
import type { Plugin } from 'vite';
import '../../assertEnvVite.js';
declare global {
var __VIKE__IS_NON_RUNNABLE_DEV: undefined | true;
var __VIKE__DYNAMIC_IMPORT: (module: `virtual:${string}`) => Promise<Record<string, unknown>>;
}
declare function pluginReplaceConstantsNonRunnableDev(): Plugin[];