Skip to content

Commit

Permalink
feat: fix illegal exports in app/api/anthropic/[...path]/route.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
butterfly committed Apr 8, 2024
1 parent ef7617d commit 5446d8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/api/anthropic/[...path]/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down

0 comments on commit 5446d8d

Please sign in to comment.