14 lines
476 B
TypeScript
14 lines
476 B
TypeScript
type ViteUserConfig = import('vite').UserConfig;
|
|
type ViteUserConfigFn = import('vite').UserConfigFn;
|
|
type AstroUserConfig = import('./dist/@types/astro.js').AstroUserConfig;
|
|
|
|
/**
|
|
* See the full Astro Configuration API Documentation
|
|
* https://astro.build/config
|
|
*/
|
|
export function defineConfig(config: AstroUserConfig): AstroUserConfig;
|
|
|
|
/**
|
|
* Use Astro to generate a fully resolved Vite config
|
|
*/
|
|
export function getViteConfig(config: ViteUserConfig): ViteUserConfigFn;
|