713fdb44ee
Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
16 lines
360 B
JavaScript
16 lines
360 B
JavaScript
export default {
|
|
computed: {
|
|
hostURL() {
|
|
return window.chatwootConfig.hostURL;
|
|
},
|
|
vapidPublicKey() {
|
|
return window.chatwootConfig.vapidPublicKey;
|
|
},
|
|
enabledLanguages() {
|
|
return window.chatwootConfig.enabledLanguages;
|
|
},
|
|
isEnterprise() {
|
|
return window.chatwootConfig.isEnterprise === 'true';
|
|
},
|
|
},
|
|
};
|