Monorepo containing core modules of Zeichen.
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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