agriculture/vue.config.js

21 lines
523 B
JavaScript
Raw Normal View History

2025-03-18 13:36:09 +08:00
const { defineConfig } = require('@vue/cli-service')
module.exports = defineConfig({
transpileDependencies: true,
lintOnSave:false, //关闭eslint校验
publicPath: '/',
devServer: {
2025-03-26 16:48:17 +08:00
host: '0.0.0.0',
port: 8000,
2025-03-18 13:36:09 +08:00
proxy: {
2025-03-24 16:26:44 +08:00
// detail: https://cli.vuejs.org/config/#devserver-proxy
[process.env.VUE_APP_BASE_API]: {
target: `http://192.168.3.18:56000`,
changeOrigin: true,
pathRewrite: {
['^' + process.env.VUE_APP_BASE_API]: ''
2025-03-18 13:36:09 +08:00
}
}
2025-03-24 16:26:44 +08:00
},
2025-03-18 13:36:09 +08:00
}
})