blob: f7ac423c9c3be0dbc201e02ebe4efc555f60e896 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
import netlify from '@astrojs/netlify';
import { defineConfig } from 'astro/config';
export default defineConfig({
output: 'server',
adapter: netlify(),
site: `http://example.com`
});
|