阅读量:2
在vue.config.js文件中配置如下: const { defineConfig } = require('@vue/cli-service') module.exports = defineConfig({ //部署应⽤包时的基本 URL,比如/https://www.aa.com/ranking/index publicPath: "/ranking/", //在构建时,Vue CLI 将通过 Babel 转译指定依赖项的代码,以确保它们在目标浏览器中能够正常工作 transpileDependencies: true, //保存文件时不会自动执行代码检查 lintOnSave: false, devServer: { // 0.0.0.0的IP地址表示整个网络,即网络中的所有主机 host: '0.0.0.0', // port: 8082, proxy: { '/b2c': { // 放服务器地址 target: 'https://www.aa.com', // 当设置为true时,请求头中的origin属性会被改变为目标服务器的地址,以避免跨域问题 changeOrigin: true, // 用于修改路径配置 // pathRewrite:{'^/b2c':''} }, } }, })