vue.config.js 502 B

12345678910111213141516171819
  1. module.exports = {
  2. baseUrl: './',
  3. productionSourceMap: false,
  4. devServer: {
  5. proxy: {
  6. '/api':{
  7. target:'http://jsonplaceholder.typicode.com',
  8. changeOrigin:true,
  9. pathRewrite:{
  10. '/api':''
  11. }
  12. },
  13. '/ms':{
  14. target: 'https://www.easy-mock.com/mock/592501a391470c0ac1fab128',
  15. changeOrigin: true
  16. }
  17. }
  18. }
  19. }