From 852401d556cc923c85d57490539b1c5949b438c0 Mon Sep 17 00:00:00 2001 From: sijinhui Date: Mon, 29 Apr 2024 23:11:16 +0800 Subject: [PATCH] fix little bug --- app/api/test/route.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/app/api/test/route.ts b/app/api/test/route.ts index e69de29bb..51174a6da 100644 --- a/app/api/test/route.ts +++ b/app/api/test/route.ts @@ -0,0 +1,10 @@ +import { NextRequest, NextResponse } from "next/server"; + +async function handle( + req: NextRequest, + { params }: { params: { path: string[] } }, +) { + return NextResponse.json({}); +} + +export const GET = handle;