From 4609e367fdb589759ddac6157e67947caa4a3ad0 Mon Sep 17 00:00:00 2001 From: Richard Bergsma Date: Tue, 4 Nov 2025 23:54:39 +0100 Subject: [PATCH] Update Astro configuration to use middleware mode for Node adapter - Changed the Node adapter mode from 'standalone' to 'middleware' in astro.config.ts to support new server functionalities. --- astro.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/astro.config.ts b/astro.config.ts index b4fd162..5e50fee 100644 --- a/astro.config.ts +++ b/astro.config.ts @@ -26,7 +26,7 @@ const whenExternalScripts = (items: (() => AstroIntegration) | (() => AstroInteg export default defineConfig({ output: 'server', - adapter: node({ mode: 'standalone' }), + adapter: node({ mode: 'middleware' }), server: { port: 3000,