Skip to content

Commit

Permalink
fix: redirects
Browse files Browse the repository at this point in the history
  • Loading branch information
remjx committed Aug 6, 2024
1 parent cd2d809 commit 3b50302
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion next.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,14 @@ const nextConfig = {
destination: 'https://app.bamk.fi/swap/mint',
permanent: false,
},
{
source: '/redeem',
destination: 'https://app.bamk.fi/swap/redeem',
permanent: false,
},
{
source: '/swap/:path',
destination: 'https://app.bamk.fi/swap',
destination: 'https://app.bamk.fi/swap/:path*',
permanent: false,
},

Expand Down

0 comments on commit 3b50302

Please sign in to comment.