0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-01-06 22:10:10 -05:00
astro/.changeset/quick-islands-call.md
Nate Moore 2b76ee8d75
Export defineConfig helper (#2803)
* feat: add astro/config entrypoint

* chore: update examples to use `defineConfig` util

* chore: prettier fix

* chore: add changeset
2022-03-15 15:27:17 -05:00

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: []
})