diff options
author | 2023-07-21 21:24:36 +0200 | |
---|---|---|
committer | 2023-07-21 21:24:36 +0200 | |
commit | 471324b0a3d4dd63641fb1192ddf0488637378ff (patch) | |
tree | c21fa78dc8a752a66031484546f414a4c5de34d5 /packages/integrations/netlify/test/hosted/hosted-astro-project/astro.config.mjs | |
parent | e5e5cc8e70bd7e842d8cdeb8614552e621e3aea0 (diff) | |
download | astro-471324b0a3d4dd63641fb1192ddf0488637378ff.tar.gz astro-471324b0a3d4dd63641fb1192ddf0488637378ff.tar.zst astro-471324b0a3d4dd63641fb1192ddf0488637378ff.zip |
test: add setup for Vercel / Netlify tests (#7716)
Co-authored-by: Yan Thomas <61414485+Yan-Thomas@users.noreply.github.com>
Diffstat (limited to 'packages/integrations/netlify/test/hosted/hosted-astro-project/astro.config.mjs')
-rw-r--r-- | packages/integrations/netlify/test/hosted/hosted-astro-project/astro.config.mjs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/packages/integrations/netlify/test/hosted/hosted-astro-project/astro.config.mjs b/packages/integrations/netlify/test/hosted/hosted-astro-project/astro.config.mjs new file mode 100644 index 000000000..48b1d4db1 --- /dev/null +++ b/packages/integrations/netlify/test/hosted/hosted-astro-project/astro.config.mjs @@ -0,0 +1,11 @@ +import netlify from '@astrojs/netlify'; +import { defineConfig } from 'astro/config'; + +// https://astro.build/config +export default defineConfig({ + output: 'server', + adapter: netlify(), + experimental: { + assets: true, + }, +}); |