trilium/apps/server/src/services/asset_path.ts
2025-05-20 18:23:02 +03:00

8 lines
285 B
TypeScript

import packageJson from "../../package.json" with { type: "json" };
import { isDev } from "./utils";
export const assetUrlFragment = `assets/v${packageJson.version}`;
const assetPath = isDev ? `http://localhost:4200/${assetUrlFragment}` : assetUrlFragment;
export default assetPath;