I have a mobile app that runs on the client side only, without a backend, and I want to serve an example read-only dataset (e.g. via IndexedDB).
I see tutorials on how to create and populate the dataset while the app is working.
In my case, I want to add the pre-existing dataset to the mobile app and access it as read-only, without having to create it.
How can I do it?
Thanks