🔱 VALHALLA: Added standalone God Mode app (independent container)

This commit is contained in:
cawcenter
2025-12-14 17:55:01 -05:00
parent c51dbc716e
commit c6a7ff286d
8 changed files with 938 additions and 0 deletions

23
god-mode/astro.config.mjs Normal file
View File

@@ -0,0 +1,23 @@
import { defineConfig } from 'astro/config';
import node from '@astrojs/node';
import react from '@astrojs/react';
import tailwind from '@astrojs/tailwind';
// https://astro.build/config
export default defineConfig({
output: 'server',
adapter: node({
mode: 'standalone'
}),
integrations: [
react(),
tailwind({
applyBaseStyles: false,
}),
],
vite: {
ssr: {
noExternal: ['path-to-regexp']
}
}
});