vue.config.js 423 B

12345678910111213141516171819202122
  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://doc.okenx.com',
  15. changeOrigin: true,
  16. pathRewrite: {
  17. "^/Apis": ''
  18. }
  19. }
  20. }
  21. }
  22. }