vike
Version:
The Framework *You* Control - Next.js & Nuxt alternative for unprecedented flexibility and dependability.
20 lines (19 loc) • 431 B
TypeScript
export type { APIOptions };
export type { Operation };
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 Operation = 'build' | 'dev' | 'preview' | 'prerender';