vue.config.js 603 B

123456789101112131415161718192021222324
  1. module.exports = {
  2. devServer: {
  3. proxy: {
  4. '/api': {
  5. target: 'http://music.zzhitong.com',
  6. ws: true,
  7. changeOrigin: true,
  8. pathRewrite: { // /api 替换
  9. '^/api': ''
  10. }
  11. },
  12. "/node":{
  13. target: 'http://localhost:3000',
  14. ws: true,
  15. changeOrigin: true,
  16. pathRewrite: { // /api 替换
  17. '^/node': ''
  18. }
  19. }
  20. }
  21. }
  22. }