rentease-web/vue.config.js

16 lines
257 B
JavaScript
Raw Normal View History

2026-03-03 15:35:20 +00:00
module.exports = {
devServer: {
2026-03-08 16:31:38 +00:00
port: 8080,
2026-03-03 15:35:20 +00:00
proxy: {
'/api': {
2026-03-08 16:31:38 +00:00
target: 'http://127.0.0.1:3000',
2026-03-03 15:35:20 +00:00
changeOrigin: true,
2026-03-08 16:31:38 +00:00
ws: true,
secure: false,
logLevel: 'debug'
2026-03-03 15:35:20 +00:00
}
}
},
lintOnSave: false
2026-03-08 16:31:38 +00:00
};