mirror of
https://github.com/yyhuni/xingrin.git
synced 2026-01-31 11:46:16 +08:00
- Replace docker.io installation script with apt-get package manager for better reliability - Add NEXT_PUBLIC_SKIP_AUTH environment variable to Vercel config for development - Improve Docker build layer caching by using native package manager instead of curl script - Simplify frontend deployment configuration for local development workflows
11 lines
238 B
JSON
11 lines
238 B
JSON
{
|
|
"$schema": "https://openapi.vercel.sh/vercel.json",
|
|
"framework": "nextjs",
|
|
"buildCommand": "pnpm build",
|
|
"installCommand": "pnpm install",
|
|
"env": {
|
|
"NEXT_PUBLIC_USE_MOCK": "true",
|
|
"NEXT_PUBLIC_SKIP_AUTH": "true"
|
|
}
|
|
}
|