From 7d4df3fd5d93d640cb2a665f28dc7240c864431f Mon Sep 17 00:00:00 2001 From: Brecert <11599528+Brecert@users.noreply.github.com> Date: Fri, 22 Feb 2019 14:53:18 -0600 Subject: [PATCH] added bree dev mode --- src/config.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/config.js b/src/config.js index 37731db..a4f3af5 100644 --- a/src/config.js +++ b/src/config.js @@ -1,5 +1,6 @@ const config = { devMode:true, + breeMode: true, recaptcha: "", IP: [ { @@ -23,6 +24,11 @@ if ( config.devMode ) { config.recaptcha = "6LeIxAcTAAAAAJcZVRqyHh71UMIEGNQ_MXjiZKhI"; config['domain'] = config.IP[0].domain; config['socketIP'] = config.IP[0].socketIP; + + if( config.breeMode ) { + config['domain'] = config.IP[1].domain; + config['socketIP'] = config.IP[1].socketIP; + } } else { config.recaptcha = "6Ld0EIwUAAAAALJNTa-1s63l-w_jHyCY6dFAVwKe"; config['domain'] = config.IP[1].domain;