goweb-gin-demo/web/vue.config.js

25 lines
619 B
JavaScript
Raw Normal View History

2021-11-30 16:19:40 +08:00
module.exports = {
outputDir: 'dist', //build输出目录
assetsDir: 'assets', //静态资源目录js, css, img
lintOnSave: false, //是否开启eslint
devServer: {
// host: "10.25.16.212",
host: "10.25.17.18",
port: '8080',
https: false,
hotOnly: false,
proxy: {
'/week': {
target: 'http://10.25.16.212:8981/',
ws: true,
changeOrigin: true,
pathRewrite: {
'^/week': ''
}
}
},
},
runtimeCompiler: true,
};