From 060f7942af79caa41f6d37eb22eb216bf284c2a9 Mon Sep 17 00:00:00 2001 From: Phoenix/HotaruBlaze Date: Sun, 13 Jul 2025 10:50:09 +0100 Subject: [PATCH] Well thats stupid it has to be like this --- astro.config.mjs | 2 -- package.json | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/astro.config.mjs b/astro.config.mjs index 83eb1c0..36e09f1 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -5,8 +5,6 @@ import node from '@astrojs/node'; export default defineConfig({ output: 'server', adapter: node({ - host: '0.0.0.0', - port: 4321, // default port for Astro SSR mode: 'standalone', // bundles dependencies with output }), integrations: [react()], diff --git a/package.json b/package.json index 86d157e..be5c909 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "build": "astro build", "preview": "astro preview", "astro": "astro", - "start": "bun ./dist/server/entry.mjs" + "start": "HOST=0.0.0.0 PORT=4321 bun ./dist/server/entry.mjs" }, "dependencies": { "@astrojs/node": "^9.3.0",