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