chore(nx/server): resource dir

This commit is contained in:
Elian Doran 2025-04-25 10:50:58 +03:00
parent 0e8b1f31b3
commit b44876ee08
No known key found for this signature in database

View File

@ -2,8 +2,8 @@ import log from "./log.js";
import path from "path"; import path from "path";
import fs from "fs"; import fs from "fs";
import { fileURLToPath } from "url"; import { getResourceDir } from "./utils.js";
export const RESOURCE_DIR = path.resolve(path.dirname(fileURLToPath(import.meta.url)), "../assets"); export const RESOURCE_DIR = path.join(getResourceDir(), "assets");
// where the "trilium" executable is // where the "trilium" executable is
const ELECTRON_APP_ROOT_DIR = path.resolve(RESOURCE_DIR, "../.."); const ELECTRON_APP_ROOT_DIR = path.resolve(RESOURCE_DIR, "../..");