aboutsummaryrefslogtreecommitdiff
path: root/apps/web/app/(dash)/chat/route.ts
diff options
context:
space:
mode:
Diffstat (limited to 'apps/web/app/(dash)/chat/route.ts')
-rw-r--r--apps/web/app/(dash)/chat/route.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/web/app/(dash)/chat/route.ts b/apps/web/app/(dash)/chat/route.ts
new file mode 100644
index 00000000..94f250ff
--- /dev/null
+++ b/apps/web/app/(dash)/chat/route.ts
@@ -0,0 +1,5 @@
+import { redirect } from "next/navigation";
+
+export async function GET() {
+ return redirect("/home");
+}