I recently made some changes that involved some Drizzle + Supabase + Next.js changes. I tested everything locally running pnpm dev and everything worked out just fine. However, now that I merged the change… things aren’t working as expected. I get
[Error: An error occurred in the Server Components render. The specific message is omitted in production builds to avoid leaking sensitive details. A digest property is included on this error instance which may provide additional details about the nature of the error.] {
digest: 'DYNAMIC_SERVER_USAGE'
}
⨯ [Error: An error occurred in the Server Components render. The specific message is omitted in production builds to avoid leaking sensitive details. A digest property is included on this error instance which may provide additional details about the nature of the error.] {
digest: 'DYNAMIC_SERVER_USAGE'
}
⨯ [Error: An error occurred in the Server Components render. The specific message is omitted in production builds to avoid leaking sensitive details. A digest property is included on this error instance which may provide additional details about the nature of the error.] {
digest: 'DYNAMIC_SERVER_USAGE'
}
When trying to access the new route. I verified that if I run pnpm build && pnpm start locally that this also happens but I don’t get any useful logs other than what I get in my Vercel logs which is the same as above. Running pnpm dev does not show anything in my terminal other than
⨯ [TypeError: controller[kState].transformAlgorithm is not a function] {
digest: '895942525'
}
⨯ [TypeError: controller[kState].transformAlgorithm is not a function] {
digest: '895942525'
}
but I have been getting those from time to time for awhile now. Any pointers on how to figure out the DYNAMIC_SERVER_USAGE would be great!