Fix explorer routing, links, and frontend API loading

This commit is contained in:
defiQUG
2026-03-28 00:21:18 -07:00
parent 011b4ff9b7
commit 26892ccbb9
23 changed files with 728 additions and 137 deletions

View File

@@ -6,9 +6,11 @@
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"build:check": "npm run lint && npm run type-check && npm run build",
"start": "PORT=${PORT:-3000} node .next/standalone/server.js",
"start:next": "next start",
"lint": "next lint",
"type-check": "tsc --noEmit",
"type-check": "tsc --noEmit -p tsconfig.check.json",
"test": "npm run lint && npm run type-check",
"test:unit": "vitest run"
},