vue.config.js 254 Bytes
Newer Older
吴雪燕's avatar
init  
吴雪燕 committed
1 2 3 4 5 6 7 8 9 10 11 12
module.exports = {
    devServer:{
        open: process.platform === 'darwin',
        host: '0.0.0.0',
        port: 3000,
        https: false,
        hotOnly: false,
        proxy: '',
        before: () => {},
        disableHostCheck: true
    }
}