build: make beforeBuildCommand relative for CI

This commit is contained in:
Yuriy 2026-01-29 16:25:26 +03:00
parent 1d3ddf25b2
commit 5c396a1483

View File

@ -14,8 +14,8 @@
},
"build": {
"beforeDevCommand": "cd \"${PAPAYU_PROJECT_ROOT:-$HOME/PAPA-YU}/desktop/ui\" && npm run dev -- --port 5173",
"beforeBuildCommand": "cd \"${PAPAYU_PROJECT_ROOT:-$HOME/PAPA-YU}/desktop/ui\" && npm run build",
"beforeDevCommand": "cd ../ui && npm run dev -- --port 5173",
"beforeBuildCommand": "cd ../ui && npm run build",
"devUrl": "http://localhost:5173",
"frontendDist": "../ui/dist"
},