astro/packages/integrations/netlify/test/hosted/hosted-astro-project/astro.config.mjs
Erika 471324b0a3
test: add setup for Vercel / Netlify tests (#7716)
Co-authored-by: Yan Thomas <61414485+Yan-Thomas@users.noreply.github.com>
2023-07-21 21:24:36 +02:00

11 lines
227 B
JavaScript

import netlify from '@astrojs/netlify';
import { defineConfig } from 'astro/config';
// https://astro.build/config
export default defineConfig({
output: 'server',
adapter: netlify(),
experimental: {
assets: true,
},
});