mirror of
https://github.com/p-stream/backend.git
synced 2026-04-19 01:02:06 +00:00
fix ddos
Missing Generated Client: The server/utils/prisma.ts file imports from '../../generated/client', but this directory didn't exist Import Failures: When login routes tried to load, they would hang indefinitely trying to resolve the broken import
This commit is contained in:
parent
9e79b3fd15
commit
3678168283
1 changed files with 2 additions and 1 deletions
|
|
@ -1,11 +1,12 @@
|
|||
generator client {
|
||||
provider = "prisma-client"
|
||||
provider = "prisma-client-js"
|
||||
output = "../generated"
|
||||
moduleFormat = "esm"
|
||||
}
|
||||
|
||||
datasource db {
|
||||
provider = "postgresql"
|
||||
url = env("DATABASE_URL")
|
||||
}
|
||||
|
||||
model bookmarks {
|
||||
|
|
|
|||
Loading…
Reference in a new issue