Dont run Prod on localhost

This commit is contained in:
2025-07-13 10:44:20 +01:00
parent 58d5612b74
commit 5391acf574

View File

@@ -5,7 +5,8 @@ import node from '@astrojs/node';
export default defineConfig({
output: 'server',
adapter: node({
host: 'fluttershub.com',
host: '0.0.0.0',
port: 4321, // default port for Astro SSR
mode: 'standalone', // bundles dependencies with output
}),
integrations: [react()],