upgrade nextjs to version 16
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-12-05 10:27:11 +08:00
parent af1b445072
commit 467232457a
6 changed files with 436 additions and 144 deletions

View File

@@ -5,8 +5,8 @@
"license": "GPL-3.0-only",
"type": "module",
"scripts": {
"dev": "next dev --turbopack --experimental-https",
"build": "next build --turbopack",
"dev": "next dev --experimental-https",
"build": "next build",
"start": "next start",
"lint": "eslint"
},
@@ -16,12 +16,12 @@
"bcryptjs": "^3.0.3",
"edge-tts-universal": "^1.3.3",
"lucide-react": "^0.553.0",
"next": "15.5.3",
"next": "16.0.7",
"next-auth": "5.0.0-beta.30",
"next-intl": "^4.5.8",
"pg": "^8.16.3",
"react": "19.1.0",
"react-dom": "19.1.0",
"react": "19.2.1",
"react-dom": "19.2.1",
"sonner": "^2.0.7",
"unstorage": "^1.17.3",
"zod": "^3.25.76"
@@ -31,12 +31,19 @@
"@tailwindcss/postcss": "^4.1.17",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^20.19.25",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"babel-plugin-react-compiler": "^1.0.0",
"eslint": "^9.39.1",
"eslint-config-next": "15.5.3",
"eslint-config-next": "16.0.7",
"prisma": "^6.19.0",
"tailwindcss": "^4.1.17",
"typescript": "^5.9.3"
},
"pnpm": {
"overrides": {
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3"
}
}
}