21 lines
523 B
JavaScript
21 lines
523 B
JavaScript
const { defineConfig } = require('@vue/cli-service')
|
|
module.exports = defineConfig({
|
|
transpileDependencies: true,
|
|
lintOnSave:false, //关闭eslint校验
|
|
publicPath: '/',
|
|
devServer: {
|
|
host: '0.0.0.0',
|
|
port: 8000,
|
|
proxy: {
|
|
// 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]: ''
|
|
}
|
|
}
|
|
},
|
|
}
|
|
})
|