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-03-30 08:42:19 -04:00
|
|
|
|
|
|
|
export default defineConfig({
|
2022-03-31 14:58:03 -03:00
|
|
|
adapter: deno(),
|
2022-04-21 12:10:06 -04:00
|
|
|
integrations: [react()],
|
2022-07-25 00:18:02 -04:00
|
|
|
output: 'server',
|
2022-03-30 08:42:19 -04:00
|
|
|
})
|