mirror of
https://github.com/withastro/astro.git
synced 2025-01-06 22:10:10 -05:00
2b76ee8d75
* 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: []
})