From 468440ec0798b2330905649f93d4e81c3de17649 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jozef=20Steinh=C3=BCbl?= Date: Sat, 3 Aug 2024 15:07:06 +0200 Subject: [PATCH] fix: mark node:path as external --- apps/website/astro.config.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/website/astro.config.ts b/apps/website/astro.config.ts index 80fe7d4..5a4783f 100644 --- a/apps/website/astro.config.ts +++ b/apps/website/astro.config.ts @@ -23,5 +23,8 @@ export default defineConfig({ "~": path.resolve(__dirname, "./src"), }, }, + ssr: { + external: ["node:path"], + }, }, });