mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-03 20:48:07 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			360 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			17 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';
 | 
						|
    },
 | 
						|
  },
 | 
						|
};
 |