astro/packages/integrations/netlify/test/hosted/hosted-astro-project/astro.config.mjs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
190 B
JavaScript
Raw Normal View History

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