mirror of
https://github.com/multica-ai/multica.git
synced 2026-07-05 05:19:30 +02:00
11 lines
218 B
TypeScript
11 lines
218 B
TypeScript
import { NextResponse } from "next/server";
|
|
import type { NextRequest } from "next/server";
|
|
|
|
export function proxy(_request: NextRequest) {
|
|
return NextResponse.next();
|
|
}
|
|
|
|
export const config = {
|
|
matcher: ["/"],
|
|
};
|