Query Engine rhel-openssl-3.0.x could not locate error
i am using next js 16.0.0 and prisma version 6.18 and i ma facing this error in production while deploying in vercel. but it works fine locally. what is the issue?
generator client {
provider = "prisma-client"
output = "../src/generated/prisma"
binaryTargets = ["native", "rhel-openssl-3.0.x"]
}
datasource db {
provider = "postgresql"
url = env("DATABASE_URL")
}import 'dotenv/config'
import {defineConfig, env} from 'prisma/config'
export default defineConfig({
schema: 'prisma/schema.prisma',
migrations: {
path: 'prisma/migrations',
seed: 'tsx prisma/seed.ts',
},
engine: 'classic',
datasource: {
url: env('DATABASE_URL'),
},
})