vue.config.js 182 B

12345678910111213
  1. module.exports = {
  2. devServer: {
  3. port:8082,
  4. proxy:{
  5. '/api':{
  6. target:'http://localhost:8080',
  7. ws:true,
  8. changeOrigin:true,
  9. },
  10. }
  11. }
  12. };