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