shortPlay-mini/vue.config.js

16 lines
362 B
JavaScript
Raw Normal View History

2024-03-29 10:16:19 +08:00
module.exports = {
devServer: {
disableHostCheck: true,
proxy: {
'/api': {
target: 'http://www.opsoul.com',
changeOrigin: true,
secure: false,
ws: false,
pathRewrite: {
'^/api': ''
}
}
}
}
}