Initial commit, working app

This commit is contained in:
2025-05-09 20:59:58 +02:00
parent 02b81219fa
commit e250b6b5d8
10 changed files with 431 additions and 62 deletions

View File

@@ -1,5 +1,13 @@
// @ts-check
import { defineConfig } from 'astro/config';
import auth from 'auth-astro';
import node from '@astrojs/node';
// https://astro.build/config
export default defineConfig({});
export default defineConfig({
integrations: [auth()],
adapter: node({
mode: 'standalone',
}),
output: 'server',
});