From 3600b468243fa3596a194d2c8ee488f11cb616b6 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Sun, 31 Aug 2025 23:04:18 +0300 Subject: [PATCH] chore(dx/server): fix missing path to client --- apps/server/scripts/build.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/server/scripts/build.ts b/apps/server/scripts/build.ts index 41e826453..b6921a4c0 100644 --- a/apps/server/scripts/build.ts +++ b/apps/server/scripts/build.ts @@ -54,7 +54,7 @@ function copyAssets() { function buildAndCopyClient() { // Trigger the build. - child_process.execSync("pnpm build", { cwd: clientDir, stdio: "inherit" }); + child_process.execSync("pnpm build", { cwd: join(projectDir, "../client"), stdio: "inherit" }); // Copy the artifacts. copy("../client/dist", "public/");