hi i just met this problem. I found that adding next headers to your service layer (OR where you use the api written in route.ts) would make it works.
import { headers } from "next/headers"
const res = await fetch("api/post", {
headers: headers()
})