blob: cf80fdb2eea652a28d260ce891a9ae3f3f363df3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
import { defineConfig } from 'astro/config';
import deno from '@astrojs/deno';
import react from '@astrojs/react';
import mdx from '@astrojs/mdx';
export default defineConfig({
adapter: deno(),
integrations: [react(), mdx()],
output: 'server'
})
|