vike
Version:
(Replaces Next.js/Nuxt) 🔨 Composable framework to build advanced applications with flexibility and stability.
20 lines (19 loc) • 437 B
TypeScript
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';