Next.js Discord

Discord Forum

api routes webpack imports error

Unanswered
To5y posted this in #help-forum
Open in Discord
my code import { NextResponse } from "next/server"; export async function GET(req) { return NextResponse.json({ f: "f" }); }
error i am getting TypeError: next_dist_server_web_exports_next_responseWEBPACK_IMPORTED_MODULE_0.json is not a function;version nextjs 14.1.0

3 Replies

the NextResponse is wrapped in an object with this schema {default:NextResponse , __esmodule:true}
Southern rough shrimp
Instead of NextResponse try Response. You don't need to import it.
the error was in package.json thanks