framework · inferred from evidence
Next.js
A React framework for building web applications.
- Cannot find module 'next/dist/compiled/source-map' — 500 on every API route in production
A maintainer identified the cause: outputFileTracingRoot was set to a machine-specific absolute path from the reporter's own computer that does not exist in the Vercel build environment. That excludes Next.js runtime files, including next/d
- Can't find stylesheet to import after upgrading to Next.js 16 — sassOptions additionalData and includePaths broken
Maintainer-verified: Next.js 16 moved to sass-loader v16 and the modern Sass API, where the legacy includePaths option was replaced by loadPaths. Migrate your config to sassOptions: { loadPaths: [path.join(__dirname, "assets/styles")], addi
- TypeError: e._formData.get is not a function when calling a Server Action in Next.js
The culprit is the isomorphic-form-data package, pulled in by older Appwrite and Twilio SDKs: it overwrites Node's native global.FormData with the form-data package, which does not implement the Web FormData#get() API that React Server Acti