web.vue.config.js Maven / Gradle / Ivy
/**
* @name: vue 配置文件
* @author: itmobai
* @date: 2023-03-09 18:46
* @description:vue 配置文件
* @update: 2023-03-09 18:46
*/
module.exports = {
publicPath: "/admin/",
devServer: {
port: 81,
host: "0.0.0.0",
"proxy": {
"/api": {
target: "http://192.168.1.64:8090",
changeOrigin: true,
pathRewrite: {
"^/api": "/api"
}
}
}
},
transpileDependencies: [/node_modules[/\\\\](axios)[/\\\\]/],
}