vue.config.js 276 B

12345678910111213141516
  1. module.exports = {
  2. devServer: {
  3. port: '8080',
  4. disableHostCheck: true,
  5. proxy: {
  6. '/Apis': {
  7. target: 'https://biking.okenx.com',
  8. // target: 'https://doc.okenx.com',
  9. changeOrigin: true,
  10. pathRewrite: {
  11. "^/Apis": ''
  12. }
  13. }
  14. }
  15. }
  16. }