.umirc.test.js 586 B

1234567891011121314151617181920212223
  1. export default {
  2. publicPath: '/',
  3. proxy: {
  4. '/api-app': {
  5. target: 'http://api.starbuds.laylib.com',
  6. //target: 'http://h5.paqukeji.com',
  7. changeOrigin: true,
  8. //pathRewrite: { '^/server': '' },
  9. },
  10. '/api-common': {
  11. target: 'http://api.starbuds.laylib.com',
  12. //target: 'http://h5.paqukeji.com',
  13. changeOrigin: true,
  14. //pathRewrite: { '^/server': '' },
  15. },
  16. '/wx': {
  17. target: 'https://api.weixin.qq.com',
  18. //target: 'http://h5.paqukeji.com',
  19. changeOrigin: true,
  20. pathRewrite: { '^/wx': '' },
  21. },
  22. },
  23. }