From 5391acf5743bab7217571240c6efe0bd79d0a51d Mon Sep 17 00:00:00 2001 From: Phoenix/HotaruBlaze Date: Sun, 13 Jul 2025 10:44:20 +0100 Subject: [PATCH] Dont run Prod on localhost --- astro.config.mjs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/astro.config.mjs b/astro.config.mjs index 574f527..83eb1c0 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -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()],