Skip to content

Commit 6a00e38

Browse files
authored
Merge pull request #328 from apsinghdev/feat/new-pitch
[chore] add pro endpoint
2 parents 8703e5b + 93ba20d commit 6a00e38

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)