alpha version

This commit is contained in:
Stephan
2025-05-20 17:06:58 -07:00
parent d6a4ef97ec
commit dfc7b346d1
29 changed files with 2552 additions and 569 deletions

View File

@@ -1,10 +1,13 @@
import { defineConfig } from 'astro/config';
import dotenv from 'dotenv';
// Environment detection
const isProd = process.env.NODE_ENV === 'production';
dotenv.config();
export default defineConfig({
output: 'static', // Change to 'server' if you need SSR
output: 'server', // Change to 'server' if you need SSR
// Development server settings
server: {