Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/ass/commit/d0c1d08431499d613e3d41dd7185699b3ed837a9 You should set ROOT_URL correctly, otherwise the web may not work correctly.

build: improved build scripts

pull/243/head
Josh Moore 2 years ago
parent 4c2337cf3c
commit d0c1d08431

@ -5,8 +5,11 @@
"main": "ass.js",
"scripts": {
"dev": "npm run build && npm start",
"build": "rm -dr dist/ & npm run build:backend && npm run build:frontend",
"build:backend": "tsc -p backend/",
"build:frontend": "tsc -p frontend/",
"dev-win": "npm run build-skip-options && npm run start",
"build": "NODE_OPTIONS=\"--max-old-space-size=1024\" tsc",
"build-old": "NODE_OPTIONS=\"--max-old-space-size=1024\" tsc",
"build-skip-options": "tsc",
"start": "node dist/app.js",
"setup": "node dist/setup.js",

Loading…
Cancel
Save