Disable host check for dev server has been added to vue config

This commit is contained in:
Kamil Niemczycki 2022-01-05 11:58:22 +01:00
parent 4370ae527e
commit 423e610b1a

View File

@ -1,5 +1,8 @@
module.exports = {
publicPath: process.env.NODE_ENV === 'production'
? '/beta/'
: '/'
: '/',
devServer: {
disableHostCheck: true
}
}