Notes/src/services/app_path.ts

7 lines
153 B
TypeScript
Raw Normal View History

import assetPath from "./asset_path.js";
import env from "./env.js";
2024-02-17 19:09:36 +02:00
export default env.isDev()
2024-02-17 19:09:36 +02:00
? assetPath + "/app"
: assetPath + "/app-dist";