0
0
Fork 0

Add config entry for allowing ngrok server hosting

This commit is contained in:
Oliver-Akins 2020-08-13 21:25:15 -06:00
parent 9ecb499e59
commit fa46bb44ef

View file

@ -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
},
}