vue.config.js 264 B

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