2b76ee8d75
* feat: add astro/config entrypoint * chore: update examples to use `defineConfig` util * chore: prettier fix * chore: add changeset
7 lines
241 B
TypeScript
7 lines
241 B
TypeScript
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;
|