Skip to content

Commit

Permalink
feat: add redirect to github on home access
Browse files Browse the repository at this point in the history
  • Loading branch information
Majorfi committed Aug 14, 2023
1 parent 9295433 commit 3d0bb17
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion _config/nodeAPI/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,16 @@
const nextConfig = {
experimental: {
appDir: true,
}
},
redirects() {
return [
{
source: '/',
destination: 'https://github.com/SmolDapp/tokenAssets',
permanent: true
}
];
},
}

module.exports = nextConfig

1 comment on commit 3d0bb17

@vercel
Copy link

@vercel vercel bot commented on 3d0bb17 Aug 14, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.