Check variant of storage used

I use the storage module provided. How can I see, which storage option is used? In the console log I don’t see anything.

export function provideStorage() {
  return new Storage(['sqlite', 'websql', 'indexeddb'], { name: '__mydb' });
}
  • You should instead be using the syntax described in the docs.
  • Also documented in there is the driver property.
1 Like

I get an error when I follow the docs: