UNPKG

vike

Version:

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

20 lines (19 loc) 437 B
export type { ApiOptions }; export type { ApiOperation }; import type { InlineConfig } from 'vite'; import type { Config } from '../../types/Config.js'; type ApiOptions = { /** * Vite config. * * https://vike.dev/api */ viteConfig?: InlineConfig; /** * Vike config. * * https://vike.dev/api */ vikeConfig?: Config; }; type ApiOperation = 'build' | 'dev' | 'preview' | 'prerender';