vue.config.js配置文件

module.exports={
    devServer:{
        port:8081,
        proxy:{
            '/api':{
                target:'http://localhost:8081',
                pathRewrite:{
                    '^/api':''
                }
            }
        }
    }
}

  

posted @ 2020-08-22 07:35  生命树gyh  阅读(132)  评论(0编辑  收藏  举报
© 2020 GitHub, Inc.