kjelsrud.dev/node_modules/astro/dist/config/index.d.ts

8 lines
349 B
TypeScript
Raw Normal View History

2023-07-19 21:31:30 +02:00
import type { UserConfig } from 'vite';
import type { AstroUserConfig } from '../@types/astro';
export declare function defineConfig(config: AstroUserConfig): AstroUserConfig;
export declare function getViteConfig(inlineConfig: UserConfig): ({ mode, command }: {
mode: string;
command: 'serve' | 'build';
}) => Promise<Record<string, any>>;