feat: fix illegal exports in app/api/anthropic/[...path]/route.ts

This commit is contained in:
butterfly 2024-04-08 13:59:55 +08:00
parent ef7617d545
commit 5446d8d4a2
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ export const preferredRegion = [
const serverConfig = getServerSideConfig();
export async function request(req: NextRequest) {
async function request(req: NextRequest) {
const controller = new AbortController();
let authHeaderName = "x-api-key";