feat: merge admin routes into unified frontend

This commit is contained in:
2026-04-22 11:46:40 +08:00
parent 745f6f07db
commit 691b80a89f
25 changed files with 1144 additions and 35 deletions

View File

@@ -3,14 +3,14 @@
"private": true,
"version": "0.1.0",
"workspaces": [
"frontend-web",
"frontend-admin"
"frontend-web"
],
"scripts": {
"dev": "npm --workspace frontend-web run dev",
"dev:web": "npm --workspace frontend-web run dev",
"dev:admin": "npm --workspace frontend-admin run dev",
"build": "npm --workspace frontend-web run build",
"build:web": "npm --workspace frontend-web run build",
"build:admin": "npm --workspace frontend-admin run build"
"start": "npm --workspace frontend-web run start",
"lint": "npm --workspace frontend-web run lint"
}
}