2022-08-05 19:41:01 +00:00
|
|
|
type ViteUserConfig = import('vite').UserConfig;
|
2022-03-15 20:27:17 +00:00
|
|
|
type AstroUserConfig = import('./dist/types/@types/astro').AstroUserConfig;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* See the full Astro Configuration API Documentation
|
|
|
|
* https://astro.build/config
|
|
|
|
*/
|
|
|
|
export function defineConfig(config: AstroUserConfig): AstroUserConfig;
|
2022-08-05 19:41:01 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Use Astro to generate a fully resolved Vite config
|
|
|
|
*/
|
|
|
|
export function getViteConfig(config: ViteUserConfig): ViteUserConfig;
|