server-esm: Change single export to export default

This commit is contained in:
Elian Doran
2024-07-18 21:50:12 +03:00
parent 0ceae0a65e
commit ecb8a7f394
63 changed files with 73 additions and 73 deletions

View File

@@ -1,6 +1,6 @@
import assetPath from "./asset_path.js";
import env from "./env.js";
export = env.isDev()
export default env.isDev()
? assetPath + "/app"
: assetPath + "/app-dist";