chore(deps): 🧹 update NextJS 14 to 15

This commit is contained in:
Ravinou 2024-12-08 11:17:50 +01:00
commit 8620fb2e02
No known key found for this signature in database
GPG key ID: EEEE670C40F6A4D7
4 changed files with 1296 additions and 1478 deletions

View file

@ -30,6 +30,7 @@ function findTypeIcon() {
declare -A icons
icons[build]='🤖'
icons[chore]='🧹'
icons["chore(deps)"]='🧹'
icons[config]='🔧'
icons[deploy]='🚀'
icons[doc]='📚'

View file

@ -1,25 +1,23 @@
/** @type {import('next').NextConfig} */
module.exports = {
// nextConfig
images: {
unoptimized: true,
},
reactStrictMode: false,
swcMinify: true,
//basePath: '/borgwarehouse-demo',
async redirects() {
return [
{
source: '/setup-wizard',
destination: '/setup-wizard/1',
permanent: true,
},
{
source: '/manage-repo',
destination: '/',
permanent: true,
},
];
},
// nextConfig
images: {
unoptimized: true,
},
reactStrictMode: false,
async redirects() {
return [
{
source: '/setup-wizard',
destination: '/setup-wizard/1',
permanent: true,
},
{
source: '/manage-repo',
destination: '/',
permanent: true,
},
];
},
};

2779
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -15,7 +15,7 @@
"@tabler/icons-react": "^3.24.0",
"bcryptjs": "^2.4.3",
"chart.js": "^4.4.7",
"next": "^14.2.15",
"next": "^15.0.4",
"next-auth": "^4.24.10",
"nodemailer": "^6.9.16",
"react": "^18.3.1",
@ -31,7 +31,7 @@
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"eslint-config-next": "^14.2.15",
"eslint-config-next": "^15.0.4",
"husky": "^9.1.7",
"prettier": "^3.4.2"
}