From 45a12d0ca9b549bbaea2c8dcd502b13d7d369ecd Mon Sep 17 00:00:00 2001 From: fnoop Date: Sun, 5 Apr 2020 08:57:08 +0100 Subject: [PATCH] Change dev port to 6100 --- vue.config.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/vue.config.js b/vue.config.js index 18f16a2..e005ce9 100644 --- a/vue.config.js +++ b/vue.config.js @@ -55,7 +55,7 @@ module.exports = { clientLogLevel: 'warning', compress: true, host: '0.0.0.0', - public: 'http://0.0.0.0:6794', + public: 'http://0.0.0.0:6100', disableHostCheck: true, headers: { 'Access-Control-Allow-Origin': '*', @@ -63,6 +63,8 @@ module.exports = { 'Access-Control-Allow-Headers': 'X-Requested-With, content-type, Authorization' }, + // https: false, + // Uncomment this https block below to enable https in the Maverick environment https: { key: fs.readFileSync('/srv/maverick/data/security/ssl/web/mavweb.key'), cert: fs.readFileSync('/srv/maverick/data/security/ssl/web/mavweb.crt'), @@ -75,7 +77,7 @@ module.exports = { warnings: true, errors: true }, - port: 6794, + port: 6100, proxy: null }, }