bookmark/vue.config.js

17 lines
390 B
JavaScript
Raw Normal View History

2021-07-10 03:56:05 +00:00
module.exports = {
publicPath: process.env.NODE_ENV === 'production' ? './' : '/', // 打包配置,解决页面空白の配置方案。
devServer: {
port: 8080,
proxy: {
// 配置前端代理转发地址
'/api': {
2021-08-14 04:00:50 +00:00
target: 'http://192.168.1.5:5000',
2021-07-10 03:56:05 +00:00
changeOrigin: true,
pathRewrite: {
'^/api': '/api'
}
}
}
}
}