summaryrefslogtreecommitdiff
path: root/packages/integrations/netlify/test/hosted/hosted-astro-project/astro.config.mjs
diff options
context:
space:
mode:
authorGravatar Erika <3019731+Princesseuh@users.noreply.github.com> 2023-07-21 21:24:36 +0200
committerGravatar GitHub <noreply@github.com> 2023-07-21 21:24:36 +0200
commit471324b0a3d4dd63641fb1192ddf0488637378ff (patch)
treec21fa78dc8a752a66031484546f414a4c5de34d5 /packages/integrations/netlify/test/hosted/hosted-astro-project/astro.config.mjs
parente5e5cc8e70bd7e842d8cdeb8614552e621e3aea0 (diff)
downloadastro-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.mjs11
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,
+ },
+});