2022-03-30 12:42:19 +00:00
|
|
|
import { defineConfig } from 'astro/config';
|
|
|
|
import deno from '@astrojs/deno';
|
2022-04-21 16:10:06 +00:00
|
|
|
import react from '@astrojs/react';
|
2022-08-16 14:08:40 +00:00
|
|
|
import mdx from '@astrojs/mdx';
|
2022-03-30 12:42:19 +00:00
|
|
|
|
|
|
|
export default defineConfig({
|
2022-03-31 17:58:03 +00:00
|
|
|
adapter: deno(),
|
2022-08-16 14:08:40 +00:00
|
|
|
integrations: [react(), mdx()],
|
2022-07-25 04:18:02 +00:00
|
|
|
output: 'server',
|
2022-03-30 12:42:19 +00:00
|
|
|
})
|