bookmark/vue.config.js
CN32479-詹红柱 bbd4af9ce7 no message
2021-08-18 20:48:44 +08:00

17 lines
394 B
JavaScript

module.exports = {
publicPath: process.env.NODE_ENV === 'production' ? './' : '/', // 打包配置,解决页面空白の配置方案。
devServer: {
port: 8080,
proxy: {
// 配置前端代理转发地址
'/api': {
target: 'https://api.zhanhongzhu.top',
changeOrigin: true,
pathRewrite: {
'^/api': '/api'
}
}
}
}
}