chore(dx/server): fix missing path to client

This commit is contained in:
Elian Doran 2025-08-31 23:04:18 +03:00
parent 9266fe63b9
commit 3600b46824
No known key found for this signature in database

View File

@ -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/");