netlify config

This commit is contained in:
Graham Hall
2022-12-08 09:36:58 -05:00
parent 4c41f0d44e
commit a1f8b3e91e
3 changed files with 27 additions and 1 deletions
+7 -1
View File
@@ -1,4 +1,10 @@
import { defineConfig } from 'astro/config';
// https://astro.build/config
export default defineConfig({ output: 'server' });
import netlify from "@astrojs/netlify/functions";
// https://astro.build/config
export default defineConfig({
output: 'server',
adapter: netlify()
});