vue.config.js 467 B

1234567891011121314151617181920212223
  1. module.exports = {
  2. devServer: {
  3. port: '8080',
  4. disableHostCheck: true,
  5. proxy: {
  6. // 'https://doc.okenx.com': {
  7. // target: 'https://doc.okenx.com',
  8. // changeOrigin: true,
  9. // pathRewrite: {
  10. // ["^" + 'https://doc.okenx.com']: ''
  11. // }
  12. // },
  13. '/Apis': {
  14. target: 'https://biking.okenx.com',
  15. // target: 'https://doc.okenx.com',
  16. changeOrigin: true,
  17. pathRewrite: {
  18. "^/Apis": ''
  19. }
  20. }
  21. }
  22. }
  23. }