chore(next.config): add redirect for /embed-preview to /embed

This commit is contained in:
Fatih Kadir Akın
2026-01-04 02:09:11 +03:00
parent 5105f0f1d1
commit f3b1a63bed

View File

@@ -44,6 +44,11 @@ const nextConfig: NextConfig = {
destination: "/categories/sponsors",
permanent: true,
},
{
source: "/embed-preview",
destination: "/embed",
permanent: true,
},
];
},
};