I’m using Ionic 2 with the SQLLite plugin, i noticed this doesn’t work on the browser using ionic serve.
But i saw here: https://docs.ionic.io/tools/view/ that the plugin is supported.
Now when i try it out on the Ionic View app on my iPhone i get the same message as in the browser: ReferenceError: sqlitePlugin is not defined
Is there any way to use SQLite and combine it with browser support?
I’ve seen some methods like: if (this.platform.is(‘cordova’)) { use sqlite plugin } else { use browser }