Init Astro

This commit is contained in:
Korbs 2024-06-17 17:22:39 -04:00
parent a450a30411
commit d1c33cfe14
6 changed files with 51 additions and 0 deletions

9
astro.config.mjs Normal file
View file

@ -0,0 +1,9 @@
import { defineConfig } from 'astro/config'
import node from '@astrojs/node'
export default defineConfig({
output: "server",
adapter: node({
mode: 'standalone',
})
})