aboutsummaryrefslogtreecommitdiff
path: root/astro.config.mjs
blob: ad9948eba802a610e51d9345eb01f49991eb63a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
import { defineConfig } from 'astro/config';

//import deno from '@astrojs/deno';
import node from '@astrojs/node';

// https://astro.build/config
export default defineConfig({
  output: 'server',
  adapter: node(),
  integrations: []
});