server-ts: Port app* services

This commit is contained in:
Elian Doran
2024-02-17 19:09:36 +02:00
parent a06aa9df8a
commit 9826fed905
17 changed files with 35 additions and 34 deletions

6
src/services/app_path.ts Normal file
View File

@@ -0,0 +1,6 @@
import assetPath = require('./asset_path');
import env = require('./env');
export = env.isDev()
? assetPath + "/app"
: assetPath + "/app-dist";