fix: 优化 Vercel 部署区域配置并升级依赖版本

- 将 Vercel 部署区域从新加坡(sin1)改为香港(hkg1),提升中国大陆访问速度
- 升级 eslint-config-next 至 15.1.11 与 Next.js 版本保持一致
- 修复代码审查中发现的依赖版本不一致问题
This commit is contained in:
蔡浩涵
2026-01-11 11:11:19 +08:00
parent 5721206516
commit 7bfdb920a6
3 changed files with 11 additions and 11 deletions
+1 -1
View File
@@ -42,7 +42,7 @@
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"eslint": "^9",
"eslint-config-next": "15.1.6",
"eslint-config-next": "15.1.11",
"eslint-config-prettier": "^9.1.0",
"postcss": "^8",
"prettier": "^3.4.2",
+9 -9
View File
@@ -97,8 +97,8 @@ importers:
specifier: ^9
version: 9.39.2(jiti@1.21.7)
eslint-config-next:
specifier: 15.1.6
version: 15.1.6(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
specifier: 15.1.11
version: 15.1.11(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
eslint-config-prettier:
specifier: ^9.1.0
version: 9.1.2(eslint@9.39.2(jiti@1.21.7))
@@ -591,8 +591,8 @@ packages:
'@next/env@15.1.11':
resolution: {integrity: sha512-yp++FVldfLglEG5LoS2rXhGypPyoSOyY0kxZQJ2vnlYJeP8o318t5DrDu5Tqzr03qAhDWllAID/kOCsXNLcwKw==}
'@next/eslint-plugin-next@15.1.6':
resolution: {integrity: sha512-+slMxhTgILUntZDGNgsKEYHUvpn72WP1YTlkmEhS51vnVd7S9jEEy0n9YAMcI21vUG4akTw9voWH02lrClt/yw==}
'@next/eslint-plugin-next@15.1.11':
resolution: {integrity: sha512-jpAu+46v5FF/TO8YUdOBHn/Wr4SCiU4IgjQ45S9Nn3vR4nZVS2SR+m9lpxcCv/xqMUoYuYFQZUP0H/ptw0W6+w==}
'@next/swc-darwin-arm64@15.1.9':
resolution: {integrity: sha512-sQF6MfW4nk0PwMYYq8xNgqyxZJGIJV16QqNDgaZ5ze9YoVzm4/YNx17X0exZudayjL9PF0/5RGffDtzXapch0Q==}
@@ -2086,8 +2086,8 @@ packages:
resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==}
engines: {node: '>=12'}
eslint-config-next@15.1.6:
resolution: {integrity: sha512-Wd1uy6y7nBbXUSg9QAuQ+xYEKli5CgUhLjz1QHW11jLDis5vK5XB3PemL6jEmy7HrdhaRFDz+GTZ/3FoH+EUjg==}
eslint-config-next@15.1.11:
resolution: {integrity: sha512-RK5q3f8CKMTwNXULOqd2TAsz+7kA5+5fy5YK7T6SeczLFOuOUcuJOGlYUbyoeU6+UKQrpFsYgCz71hI1F9q5Cg==}
peerDependencies:
eslint: ^7.23.0 || ^8.0.0 || ^9.0.0
typescript: '>=3.3.1'
@@ -4200,7 +4200,7 @@ snapshots:
'@next/env@15.1.11': {}
'@next/eslint-plugin-next@15.1.6':
'@next/eslint-plugin-next@15.1.11':
dependencies:
fast-glob: 3.3.1
@@ -5665,9 +5665,9 @@ snapshots:
escape-string-regexp@5.0.0: {}
eslint-config-next@15.1.6(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3):
eslint-config-next@15.1.11(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3):
dependencies:
'@next/eslint-plugin-next': 15.1.6
'@next/eslint-plugin-next': 15.1.11
'@rushstack/eslint-patch': 1.15.0
'@typescript-eslint/eslint-plugin': 8.50.1(@typescript-eslint/parser@8.50.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3))(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
'@typescript-eslint/parser': 8.50.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
+1 -1
View File
@@ -2,5 +2,5 @@
"buildCommand": "pnpm prisma generate && pnpm build",
"installCommand": "pnpm install",
"framework": "nextjs",
"regions": ["sin1"]
"regions": ["hkg1"]
}