My nextjs/learn thing wont build in vercel.
Unanswered
West African Lion posted this in #help-forum
West African LionOP
My app works fine localy and it works as expected however when i put it on vercel it doesnt build. everything is commited on github. the error says somthing about bcrypt. i tried installing bcrypt using pnpm however none of my files changed. here is the error that vercel gives me
[Error: Cannot find module '/vercel/path0/node_modules/.pnpm/bcrypt@5.1.1/node_modules/bcrypt/lib/binding/napi-v3/bcrypt_lib.node'
Require stack:
- /vercel/path0/node_modules/.pnpm/bcrypt@5.1.1/node_modules/bcrypt/bcrypt.js
- /vercel/path0/.next/server/app/seed/route.js
- /vercel/path0/node_modules/.pnpm/next@15.1.6_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/server/require.js
- /vercel/path0/node_modules/.pnpm/next@15.1.6_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/server/load-components.js
- /vercel/path0/node_modules/.pnpm/next@15.1.6_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/build/utils.js
- /vercel/path0/node_modules/.pnpm/next@15.1.6_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/build/worker.js
- /vercel/path0/node_modules/.pnpm/next@15.1.6_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/compiled/jest-worker/processChild.js] {
code: 'MODULE_NOT_FOUND',
requireStack: [Array]
}
> Build error occurred
[Error: Failed to collect page data for /seed] { type: 'Error' }
ELIFECYCLE Command failed with exit code 1.
Error: Command "pnpm run build" exited with 1
9 Replies
West African LionOP
btw also i am on chapter 6
Delete the
.next
folder and node_modules
folder. Install the dependencies and try again.West African LionOP
i get the error localy now. i tried installing bcypt with
pnpm add bcrypt
and then `pnpm install
but i still get the errorYellow Bittern
What is your node version
please install node -v 18.20.0
West African LionOP
its version v20.15.0
should i install 18.20.0 instead
or update it to latest?
West African LionOP
this helped me in the end https://github.com/vercel/next.js/discussions/76822