Notes/apps/server/src/services/app_path.ts
2025-04-22 17:16:41 +03:00

5 lines
147 B
TypeScript

import assetPath from "./asset_path.js";
import { isDev } from "./utils.js";
export default isDev ? assetPath + "/app" : assetPath + "/app-dist";