vue.config.js 231 B

12345678910111213141516
  1. module.exports = {
  2. devServer: {
  3. proxy: {
  4. '/api': {
  5. target: 'http://192.168.2.5:8888',
  6. changeOrigin: true,
  7. ws: false,
  8. pathRewrite: {
  9. '^/api': ''
  10. }
  11. }
  12. }
  13. }
  14. }