We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4fa537 commit b7da201Copy full SHA for b7da201
src/app/connect/route.ts
@@ -0,0 +1,9 @@
1
+// This route is maintained to redirect the old path to the new /local route.
2
+// It ensures compatibility for users accessing the old website links
3
+// that have not yet been updated to the new URL.
4
+
5
+import { redirect } from "next/navigation";
6
7
+export const GET = function () {
8
+ return redirect("/local");
9
+}
0 commit comments