UNPKG

vike

Version:

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

18 lines (17 loc) 749 B
import '../assertEnvVite.js'; export { interceptViteLogs }; export { processStartupLog }; export { swallowViteLogForceOptimization_enable }; export { swallowViteLogForceOptimization_disable }; export { swallowViteLogConnected }; export { swallowViteLogConnected_clean }; import type { ResolvedConfig } from 'vite'; declare function interceptViteLogs(config: ResolvedConfig): void; declare function processStartupLog(firstLine: string, config: ResolvedConfig): { firstLine: string; isCompact: boolean; }; declare function swallowViteLogForceOptimization_enable(): void; declare function swallowViteLogForceOptimization_disable(): void; declare function swallowViteLogConnected(): void; declare function swallowViteLogConnected_clean(): void;