| 123456789101112131415161718192021 |
- // vue.config.js
- module.exports = {
- devServer: {
- proxy: {
- '/java-api': {
- target: 'http://localhost:8080',
- changeOrigin: true,
- pathRewrite: {
- '^/java-api': '/java-api' // 保持原始路径
- }
- },
- '/api': {
- target: 'http://localhost:8080',
- changeOrigin: true,
- pathRewrite: {
- '^/api': '/api' // 修正路径重写规则
- }
- }
- }
- }
- }
|