mirror of
https://github.com/zadam/trilium.git
synced 2025-03-01 14:22:32 +01:00
7 lines
153 B
TypeScript
7 lines
153 B
TypeScript
import assetPath = require('./asset_path');
|
|
import env = require('./env');
|
|
|
|
export = env.isDev()
|
|
? assetPath + "/app"
|
|
: assetPath + "/app-dist";
|