next build with webpack emits absolute build-machine paths into .next/server/**:
require("/vercel/path0/node_modules/.../@sentry/server-utils/build/cjs/orchestrion/index.js")
Any deploy that relocates the output — Vercel (/vercel/path0 → /var/task), Docker multi-stage, output: 'standalone' — turns these into MODULE_NOT_FOUND on the first request to a dynamic route. Static routes still work, so the build looks healthy.
next buildwith webpack emits absolute build-machine paths into.next/server/**:Any deploy that relocates the output — Vercel (
/vercel/path0→/var/task), Docker multi-stage,output: 'standalone'— turns these intoMODULE_NOT_FOUNDon the first request to a dynamic route. Static routes still work, so the build looks healthy.