mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-08-01 20:52:27 +08:00
7 lines
153 B
TypeScript
7 lines
153 B
TypeScript
import assetPath from "./asset_path.js";
|
|
import env from "./env.js";
|
|
|
|
export default env.isDev()
|
|
? assetPath + "/app"
|
|
: assetPath + "/app-dist";
|