Vue中设置代理服务器
首先在vue.config.js文件中设置module.exports = { publicPath: '/', // 启动页地址,vue4.0更新 outputDir: 'dist', // 打包的目录 lintOnSave: true, // 在保存时校验格式 productionSourceMap: false, // 生产环境是否生成 SourceMap devServer: { open: true, // 启动服务后是否打开浏览器