Skip to content

Commit b627e4a

Browse files
[Nebula] Add permanent redirect to thirdweb.com/ai
1 parent ca701a4 commit b627e4a

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

apps/nebula/next.config.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,15 @@ const baseNextConfig: NextConfig = {
6464
},
6565
productionBrowserSourceMaps: false,
6666
reactStrictMode: true,
67+
async redirects() {
68+
return [
69+
{
70+
source: "/:path*",
71+
destination: "https://thirdweb.com/ai",
72+
permanent: true,
73+
},
74+
];
75+
},
6776
async rewrites() {
6877
return [
6978
{

0 commit comments

Comments
 (0)