vue.config.js 342 B

1234567891011121314151617181920212223
  1. module.exports = {
  2. // 配置路径别名
  3. configureWebpack: {
  4. devServer: {
  5. disableHostCheck: true,
  6. https: false
  7. }
  8. },
  9. devServer: {
  10. port: '8890',
  11. disableHostCheck:true,
  12. proxy:{
  13. '/api':{
  14. target: 'https://wx.hw.hongweisoft.com/parking/',
  15. changeOrigin: true,
  16. pathRewrite:{
  17. '^/api': ''
  18. }
  19. }
  20. }
  21. },
  22. }