rentease-web/vue.config.js

14 lines
232 B
JavaScript
Raw Normal View History

2026-03-03 15:35:20 +00:00
module.exports = {
devServer: {
proxy: {
'/api': {
target: 'http://localhost:3000',
changeOrigin: true,
pathRewrite: {
'^/api': '/api'
}
}
}
},
lintOnSave: false
};