vue.config.js 367 B

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