123456789101112131415161718192021222324 |
- module.exports = {
- devServer: {
- proxy: {
- '/api': {
- target: 'http://music.zzhitong.com',
- ws: true,
- changeOrigin: true,
- pathRewrite: { // /api 替换
- '^/api': ''
- }
- },
- "/node":{
- target: 'http://localhost:3000',
- ws: true,
- changeOrigin: true,
- pathRewrite: { // /api 替换
- '^/node': ''
- }
- }
- }
- }
- }
|