You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -70,13 +71,12 @@ To ensure the generated Prisma Client library is available on your deployed Netl
70
71
"scripts": {
71
72
// ...
72
73
// add-next-line
73
-
"postinstall":"prisma generate --no-engine"
74
+
"postinstall":"prisma generate"
74
75
}
75
76
//
76
77
}
77
78
```
78
79
79
-
The `--no-engine` flag ensures that the query engine binary is kept out of the generated Prisma Client library. It's not needed when using Prisma Postgres.
80
80
81
81
## Example: Deploy a Next.js template with Prisma Postgres
82
82
@@ -162,7 +162,7 @@ Open the `app/page.jsx` file and replace the entire contents with this code:
@@ -88,10 +89,8 @@ To ensure the generated Prisma Client library is available on your deployed Verc
88
89
"scripts": {
89
90
// ...
90
91
// add-next-line
91
-
"postinstall":"prisma generate --no-engine"
92
+
"postinstall":"prisma generate"
92
93
}
93
94
//
94
95
}
95
96
```
96
-
97
-
The `--no-engine` flag ensures that the query engine binary is kept out of the generated Prisma Client library. It's not needed when using Prisma Postgres.
0 commit comments