blob: 1a5c7f32ce1d7c4878cf2205de9c19de97b15bc2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
import { defineConfig } from 'astro/config';
import deno from '@astrojs/deno';
// https://astro.build/config
export default defineConfig({
output: 'server',
adapter: deno(),
});
|