From fa46bb44ef79938dc853f110949f4aa291e766c5 Mon Sep 17 00:00:00 2001 From: Oliver-Akins Date: Thu, 13 Aug 2020 21:25:15 -0600 Subject: [PATCH] Add config entry for allowing ngrok server hosting --- vue.config.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vue.config.js b/vue.config.js index 188ca39..b1ff79a 100644 --- a/vue.config.js +++ b/vue.config.js @@ -1,5 +1,8 @@ module.exports = { publicPath: process.env.NODE_ENV === `production` ? `/top-lists/` - : `/` + : `/`, + devServer: { + disableHostCheck: false, // set this to true to allow ngrok web serving + }, } \ No newline at end of file