mirror of
https://github.com/zadam/trilium.git
synced 2025-10-27 17:27:01 +08:00
chore(dx/server): fix missing path to client
This commit is contained in:
parent
9266fe63b9
commit
3600b46824
1 changed files with 1 additions and 1 deletions
|
|
@ -54,7 +54,7 @@ function copyAssets() {
|
||||||
|
|
||||||
function buildAndCopyClient() {
|
function buildAndCopyClient() {
|
||||||
// Trigger the build.
|
// 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 the artifacts.
|
||||||
copy("../client/dist", "public/");
|
copy("../client/dist", "public/");
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue