Monorepo containing core modules of Zeichen.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 rivejä
222 B

  1. import LocalStorage from '../plugin-local-storage'
  2. import RemoteStorage from '../plugin-remote-storage'
  3. export default {
  4. plugins: [
  5. LocalStorage,
  6. RemoteStorage({ baseUrl: 'https://localhost:3000/api', }),
  7. ]
  8. }