diff options
author | 2022-03-15 15:27:17 -0500 | |
---|---|---|
committer | 2022-03-15 15:27:17 -0500 | |
commit | 2b76ee8d75d44492af18b9ead35293da7178930a (patch) | |
tree | 067e3732e6a0ffff70a3b7e38d7bb53c30341bf8 /examples/ssr/astro.config.mjs | |
parent | 2d95541b52118f787144720cb28cdd64644b903a (diff) | |
download | astro-2b76ee8d75d44492af18b9ead35293da7178930a.tar.gz astro-2b76ee8d75d44492af18b9ead35293da7178930a.tar.zst astro-2b76ee8d75d44492af18b9ead35293da7178930a.zip |
Export defineConfig helper (#2803)
* feat: add astro/config entrypoint
* chore: update examples to use `defineConfig` util
* chore: prettier fix
* chore: add changeset
Diffstat (limited to 'examples/ssr/astro.config.mjs')
-rw-r--r-- | examples/ssr/astro.config.mjs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/ssr/astro.config.mjs b/examples/ssr/astro.config.mjs index c96372f66..d54ab5929 100644 --- a/examples/ssr/astro.config.mjs +++ b/examples/ssr/astro.config.mjs @@ -1,6 +1,6 @@ // @ts-check -export default /** @type {import('astro').AstroUserConfig} */ ({ +export default defineConfig({ renderers: ['@astrojs/renderer-svelte'], vite: { server: { |