add node, got a couple endpoints working

This commit is contained in:
2026-01-12 16:54:30 +13:00
parent e448e68c1d
commit 02df7ab9e4
6 changed files with 180 additions and 2 deletions

View File

@@ -5,11 +5,18 @@ import tailwindcss from '@tailwindcss/vite';
import db from '@astrojs/db';
import node from '@astrojs/node';
// https://astro.build/config
export default defineConfig({
output: 'server',
vite: {
plugins: [tailwindcss()]
},
integrations: [db()]
integrations: [db()],
adapter: node({
mode: 'standalone'
})
});