config.js 136 B

123456
  1. export const config = {
  2. onError: e => console.error(e),
  3. };
  4. export const setConfig = (conf) => {
  5. Object.assign(config, conf);
  6. };