2024-07-18 21:35:17 +03:00
|
|
|
import assetPath from "./asset_path.js";
|
|
|
|
import env from "./env.js";
|
2024-02-17 19:09:36 +02:00
|
|
|
|
2024-07-18 21:50:12 +03:00
|
|
|
export default env.isDev()
|
2024-02-17 19:09:36 +02:00
|
|
|
? assetPath + "/app"
|
|
|
|
: assetPath + "/app-dist";
|