| | |
| | | } |
| | | }, |
| | | server: { |
| | | host: '0.0.0.0', |
| | | port: 3000, |
| | | open: true, |
| | | proxy: { |
| | | '/api': { |
| | | target: 'http://localhost:8080', |
| | | target: 'http://127.0.0.1:8080', |
| | | changeOrigin: true, |
| | | secure: false, |
| | | configure: (proxy, options) => { |
| | | proxy.on('error', (err, req, res) => { |
| | | console.log('proxy error', err); |
| | | }); |
| | | proxy.on('proxyReq', (proxyReq, req, res) => { |
| | | console.log('Sending Request to the Target:', req.method, req.url); |
| | | }); |
| | | proxy.on('proxyRes', (proxyRes, req, res) => { |
| | | console.log('Received Response from the Target:', proxyRes.statusCode, req.url); |
| | | }); |
| | | }, |
| | | // 不需要重写路径,因为后端的context-path就是/api |
| | | // rewrite: (path) => path.replace(/^\/api/, '/api') |
| | | } |