vue.config.js 244 B

123456789101112131415161718
  1. const path = require('path')
  2. const fs = require('fs')
  3. module.exports = {
  4. devServer: {
  5. proxy: {
  6. '/api': {
  7. target: 'http://127.0.0.1:8888',
  8. changeOrigin: true,
  9. ws: false,
  10. pathRewrite: {
  11. '^/api': ''
  12. }
  13. }
  14. }
  15. }
  16. }