mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-10-31 11:08:04 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			353 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			353 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| export default {
 | |
|   computed: {
 | |
|     hostURL() {
 | |
|       return window.chatwootConfig.hostURL;
 | |
|     },
 | |
|     twilioCallbackURL() {
 | |
|       return `${this.hostURL}/twilio/callback`;
 | |
|     },
 | |
|     vapidPublicKey() {
 | |
|       return window.chatwootConfig.vapidPublicKey;
 | |
|     },
 | |
|     enabledLanguages() {
 | |
|       return window.chatwootConfig.enabledLanguages;
 | |
|     },
 | |
|   },
 | |
| };
 | 
