From c1e2761259914732deef767531a2e252fc0866e8 Mon Sep 17 00:00:00 2001 From: mark Date: Wed, 18 Feb 2026 00:30:36 +0000 Subject: [PATCH] Fix Prisma schema: use only linux-musl-openssl-3.0.x binary target --- prisma/schema.prisma | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/prisma/schema.prisma b/prisma/schema.prisma index da6821f..f6de6cb 100644 --- a/prisma/schema.prisma +++ b/prisma/schema.prisma @@ -3,7 +3,7 @@ generator client { provider = "prisma-client-js" - binaryTargets = ["native", "linux-musl-openssl-3.0.x"] + binaryTargets = ["linux-musl-openssl-3.0.x"] } datasource db { @@ -61,4 +61,3 @@ model VerificationToken { @@unique([identifier, token]) @@map("verification_tokens") } -