Skip to content

Commit 93ba20d

Browse files
committed
chore: add pro endpoint
1 parent 8703e5b commit 93ba20d

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

apps/web/next.config.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,15 @@ const nextConfig = {
5959
experimental: {
6060
optimizePackageImports: ['lucide-react', '@heroicons/react'],
6161
},
62+
async redirects() {
63+
return [
64+
{
65+
source: '/pro',
66+
destination: '/pricing',
67+
permanent: true,
68+
},
69+
];
70+
},
6271
};
6372

6473
module.exports = nextConfig;

0 commit comments

Comments
 (0)