```generator client { provider = "prisma-cl...
# orm-help
a
Copy code
generator client {
  provider      = "prisma-client-js"
  binaryTargets = ["native"]
}
Question -- I'm running a docker container on WSL2 Ubuntu (Linux) to host a postgres db but have Prisma et al (remaining codebase) configured in a Windows environment. The native setting for binaryTargets detects the active OS -- that'd be good since a lot of the guys I collab with use Macs... setting the binaryTargets to "native" shouldn't result in a weird side effect like OS oscillation between Windows and Linux right?
r
@Andrew Ross 👋 Yes, it will download the exact binary required for the OS.