fix: switch admin to subdomain mode and fix frozen-lockfile build

- Remove /admin path prefix (using admin.protdskj.top subdomain instead)
- Change pnpm install to --no-frozen-lockfile for lockfile compatibility
- Simplify admin Nginx config to standard SPA serving

🤖 Generated with [Qoder][https://qoder.com]
This commit is contained in:
2026-06-09 11:24:40 +08:00
parent 4caedde3fc
commit 9c6c5e51f3
7 changed files with 10 additions and 26 deletions

View File

@@ -10,7 +10,7 @@ COPY apps/api/package.json apps/api/
COPY apps/player/package.json apps/player/
COPY apps/admin/package.json apps/admin/
COPY packages/shared/package.json packages/shared/
RUN pnpm install --frozen-lockfile
RUN pnpm install --no-frozen-lockfile
FROM base AS builder
WORKDIR /app