iachat/app/javascript/shared/mixins/configMixin.js

11 lines
187 B
JavaScript

export default {
computed: {
hostURL() {
return window.chatwootConfig.hostURL;
},
twilioCallbackURL() {
return `${this.hostURL}/twilio/callback`;
},
},
};