From 2c77ab58076bd6e6668f15e6407a09091fe73407 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jozef=20Steinh=C3=BCbl?= Date: Sat, 3 Aug 2024 17:03:50 +0200 Subject: [PATCH] fix: add path to ssr external --- apps/website/astro.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/website/astro.config.ts b/apps/website/astro.config.ts index 5a4783f..f81ac21 100644 --- a/apps/website/astro.config.ts +++ b/apps/website/astro.config.ts @@ -24,7 +24,7 @@ export default defineConfig({ }, }, ssr: { - external: ["node:path"], + external: ["node:path", "path"], }, }, });