To expand a bit why this would generally be difficult for Prisma:
The Query Engine we are using ships with the SQLite client and can only talk to a local file. That is a limitation that makes total sense on the server side where Prisma is usually used. It becomes harder in a web/browser context, where there is not real file system and SQLite is usually provided via a browser API or a native API (as in the Capacitor and Cordova plugin). I am sure there is a solution on how to make them talk to each other, but it is not something that works out of the box and that will be trivial to figure out and fix (Especially with all the mobile platforms, versions, changes by device manufacturer etc)