Zeichen's app for both server and client.
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 lines
231 B

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