In schema.prisma file
generator client {
provider = "prisma-client-js"
output = "../src/generated/prisma" // notice that
}
In auth.ts file, import PrismaClient
import { PrismaClient } from "../src/generated/prisma"; // notice that
Both will be the same.