Vercel Next JS Dashboard Deployment Error Bcrypt

Hi @behanprw, thanks for sharing the solution here. I’m posting it below for anyone stumbling here:

Run the following commands to remove bcrypt and add bcryptjs

pnpm remove bcrypt
pnpm add bcryptjs

Then update the /app/seed/route.ts file to use bcryptjs:

// /app/seed/route.ts
- import bcrypt from "bcrypt";
+ import bcrypt from "bcryptjs";

Link to the original comment: Learn Next.js Chapter 6 setting up your database. Cannot find module bcrypt · vercel/next.js · Discussion #76822 · GitHub

1 Like