Redirect to stream page for todays live feed

This commit is contained in:
2025-10-24 17:13:47 +03:00
parent d655499c6b
commit a0b530379f
3 changed files with 29 additions and 112 deletions

View File

@@ -22,6 +22,20 @@ const nextConfig: NextConfig = {
},
];
},
async redirects() {
return [
{
source: "/et",
destination: "/striim",
permanent: false,
},
{
source: "/en",
destination: "/stream",
permanent: false,
},
];
},
};
export default withNextIntl(nextConfig);