WIP
Deploy the app with
pnpm build && pnpm run deploy- Delete the indexedDB (in Firefox:
Storage->Indexed DB) when the schema changes - then:
pnpm db.generate
- this error appears when you run the app on the network and try to access it
through an address like
http://192.168.1.26:3542 - reason: the Web Crypto API is only available in secure contexts.
- Solve it by following these steps:
- use a local tunnel with a service like
ngrok - update the list of the enabled hosts in your
vite.config.tstemporarily:
- use a local tunnel with a service like
server: {
allowedHosts: true,
},