Hi Vercel team
I’m deploying a NestJS project to Vercel and hitting an issue with module resolution. On local development and other hosting providers, my imports like this work fine:
import Roles from 'src/common/guards/verify-jwt.guard'
When deployed to Vercel, the build succeeds but runtime fails with:

this is i define databaseModule :
import { DatabaseModule } from 'src/modules/database/database.module';i think the error because vercel cannot understand the "src" path, i founded the solution by remove the src/ and write actual manual path like "../../..." instead of "src/" but it have more than 50 constants and props imported automaticly, so what is your suggestion to fix that?