Fix Production startup

This commit is contained in:
2025-07-13 10:42:05 +01:00
parent f77cd1302e
commit 58d5612b74
4 changed files with 49 additions and 2 deletions

View File

@@ -1,6 +1,12 @@
import { defineConfig } from 'astro/config';
import react from '@astrojs/react';
import node from '@astrojs/node';
export default defineConfig({
output: 'server',
adapter: node({
host: 'fluttershub.com',
mode: 'standalone', // bundles dependencies with output
}),
integrations: [react()],
});