Skip to content

Commit

Permalink
chore(deps): 🧹 update NextJS 14 to 15
Browse files Browse the repository at this point in the history
  • Loading branch information
Ravinou committed Dec 8, 2024
1 parent fc3f57e commit 8620fb2
Show file tree
Hide file tree
Showing 4 changed files with 1,296 additions and 1,478 deletions.
1 change: 1 addition & 0 deletions .husky/append-icon.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ function findTypeIcon() {
declare -A icons
icons[build]='🤖'
icons[chore]='🧹'
icons["chore(deps)"]='🧹'
icons[config]='🔧'
icons[deploy]='🚀'
icons[doc]='📚'
Expand Down
40 changes: 19 additions & 21 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -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,
},
];
},
};
Loading

0 comments on commit 8620fb2

Please sign in to comment.