vue.config.js 491 字节
module.exports = {
  lintOnSave: false,
  devServer: {
    // https: false,
    // proxy: { // 配置跨域
    //   '/api': {
    //     // 正式服:http://admin.anqixing.com/  测试服:https://security.brofirst.cn/
    //     target:require("@/config/baseurl.js").default, // 这里后台的地址模拟的;应该填写你们真实的后台接口
    //     changOrigin: true, // 允许跨域
    //     pathRewrite: {
    //       '^/api': ''
    //     }
    //   }
    // }
  }
}