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
Copy file name to clipboardExpand all lines: README.md
+14Lines changed: 14 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -208,6 +208,20 @@ This is because a JWT token is expired. If you are consistently getting this e
208
208
209
209
If you choose to use MongoDB with Prisma, there are some gotchas in Prisma's MongoDB support to be aware of. Please see the [Prisma SessionStorage README](https://www.npmjs.com/package/@shopify/shopify-app-session-storage-prisma#mongodb).
210
210
211
+
### Unable to require(`C:\...\query_engine-windows.dll.node`).
212
+
213
+
Unable to require(`C:\...\query_engine-windows.dll.node`).
214
+
The Prisma engines do not seem to be compatible with your system.
215
+
216
+
query_engine-windows.dll.node is not a valid Win32 application.
217
+
218
+
**Fix:** Set the environment variable:
219
+
```shell
220
+
PRISMA_CLIENT_ENGINE_TYPE=binary
221
+
```
222
+
223
+
This forces Prisma to use the binary engine mode, which runs the query engine as a separate process and can work via emulation on Windows ARM64.
0 commit comments