mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-09-25 14:31:33 +08: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";
|