打包配置

module.exports ={
    lintOnSave:false,
    outputDir:'dist',
    assetsDir:'static',
    productionSourceMap:false,
    publicPath:'./' ,
    devServer:{
        open:true,
        host:'0.0.0.0',
        port:8081,
        hotOnly:false,
        proxy:{
            '/api':{
                //服务器端接口地址
                target:'http://192.168.0.177:8081',
                //
                ws:true,
                //是否跨域
                changeOrigin:true,
                pathRewrite:{
                    '^/api':''
                }
            }
        }
    }
}

 

posted @ 2021-08-20 17:18  zjxgdq  阅读(24)  评论(0编辑  收藏  举报