vue.config.js 209 B

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