fix last change
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Lukas Bachschwell 2019-12-10 16:49:46 +01:00
parent f4f56cb11e
commit 59aa4a5e67
1 changed files with 6 additions and 1 deletions

View File

@ -12,7 +12,12 @@ export default {
return {}
},
mounted: () => {
window.botpressWebChat.init({ host: process.env.BOTPRESS_HOST, botId: 'joinbot', enableReset: false,
let host = 'https://joinbot.tk'
if (process.env.NODE_ENV === 'development') {
host = 'http://localhost:3000'
}
window.botpressWebChat.init({ host: host, botId: 'joinbot', enableReset: false,
enableTranscriptDownload: false,
hideWidget: true,
extraStylesheet: '/assets/modules/channel-web/chat.css',