Monorepo containing core modules of Zeichen.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

zeichen.config.ts 222 B

123456789
  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. }