Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion frontend/next.config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,17 @@
import type { NextConfig } from "next";

const nextConfig: NextConfig = {
/* config options here */
async redirects() {
return [
{
// Redirect legacy duplicated route `/streams/streams/:streamId` → `/streams/:id`
// See: https://github.com/LabsCrypt/flowfi/issues/1084
source: "/streams/streams/:streamId",
destination: "/streams/:streamId",
permanent: true,
},
];
},
};

export default nextConfig;
342 changes: 0 additions & 342 deletions frontend/src/app/streams/streams/[streamId]/page.tsx

This file was deleted.