we’re running prisma on heroku and haven noticed r...
# orm-help
c
we’re running prisma on heroku and haven noticed recently that we’re getting the following:
Error: Cannot find module '.prisma/client'
. We haven’t updated prisma or changed anything, so we’re a bit confused and I’m curious if anyone else has seen similar
r
@chrisdrackett 👋 Could you try explicitly running
prisma generate
during the deployment process and check?
c
this works fine and is what we’re doing as a stopgap. It just seems that sometime around 10.18.2021 this wasn’t needed and now it is. We first noticed it because our CI on github actions stopped passing, then a bit later we noticed it on heroku as our app would crash on deploy
👍 1