Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions apps/server/prisma/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@
// learn more about it in the docs: https://pris.ly/d/prisma-schema

generator client {
provider = "prisma-client"
output = "generated/client"
moduleFormat = "esm"
provider = "prisma-client"
output = "generated/client"
moduleFormat = "esm"
binaryTargets = ["native", "linux-musl-openssl-3.0.x"] // linux needed for the deployment
Copy link

Copilot AI May 28, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[nitpick] The comment 'linux needed for the deployment' should capitalize 'Linux' and include a period at the end for consistency and readability.

Suggested change
binaryTargets = ["native", "linux-musl-openssl-3.0.x"] // linux needed for the deployment
binaryTargets = ["native", "linux-musl-openssl-3.0.x"] // Linux needed for the deployment.

Copilot uses AI. Check for mistakes.

}

datasource db {
Expand Down
Loading