mirror of
https://github.com/withastro/astro.git
synced 2025-02-24 22:46:02 -05:00
* feat: add astro/config entrypoint * chore: update examples to use `defineConfig` util * chore: prettier fix * chore: add changeset
282 B
282 B
astro |
---|
patch |
Add an astro/config
entrypoint with a defineConfig
utility.
Config files can now be easily benefit from Intellisense using the following approach:
import { defineConfig } from 'astro/config';
export default defineConfig({
renderers: []
})