diff --git a/apps/web/app/api/chat/history/route.ts b/apps/web/app/api/chat/history/route.ts new file mode 100644 index 00000000..6c0cf41b --- /dev/null +++ b/apps/web/app/api/chat/history/route.ts @@ -0,0 +1,7 @@ +import { NextRequest } from "next/server"; + +export const runtime = "edge"; + +export async function GET(req: NextRequest) { + return new Response("Hello, World!"); +}