shortPlay-mini/vue.config.js

16 lines
362 B
JavaScript

module.exports = {
devServer: {
disableHostCheck: true,
proxy: {
'/api': {
target: 'http://www.opsoul.com',
changeOrigin: true,
secure: false,
ws: false,
pathRewrite: {
'^/api': ''
}
}
}
}
}