mirror of
https://github.com/zadam/trilium.git
synced 2025-03-01 14:22:32 +01:00
7 lines
159 B
JavaScript
7 lines
159 B
JavaScript
const assetPath = require("./asset_path");
|
|
const env = require("./env");
|
|
|
|
module.exports = env.isDev()
|
|
? assetPath + "/app"
|
|
: assetPath + "/app-dist";
|