vue.config.js 186 B

12345678910
  1. module.exports={
  2. devServer:{
  3. proxy:{
  4. '/api':{
  5. target:'https://www.scxjc.club',
  6. changeOrigin: true,
  7. }
  8. }
  9. }
  10. }