The GET and POST handle functions are written in the api/nav/route.ts file at the same time. The development environment is normal. However, after deployment through vercel, the GET request returns an abnormal result. If the POST handle function is commented out at that time, the GET request returns a normal result?
My entire application did not initiate a corresponding post request, regardless of whether it was commented out or not.
abnormal response: the post handle function
is not commented
on the vercel production environment,page.tsx file name is missing
{ "code": 200, "test": [ "readme.mdx" ] }
normal response: the post handle function
is commented
on the vercel production{ "code": 200, "test": [ "page.tsx", "readme.mdx" ] }
app/api/nav/route.ts
dir structure img,The page.tsx file does exist
export async function GET(request: Request) {
const test = []
for (const name of await fs.readdir(
path.resolve(process.cwd(), 'app/blog/data_structure/tree')
)) {
test.push(name)
}
const result = {
code: 200,
test: test,
}
return NextResponse.json(result)
}
export async function POST(request: Request) {
return NextResponse.json({ data: true })
}