vue.config.js 718 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. module.exports = {
  2. lintOnSave: true,
  3. productionSourceMap: false,
  4. chainWebpack: (config) => {
  5. //忽略的打包文件
  6. config.externals({
  7. 'vue': 'Vue',
  8. 'vue-router': 'VueRouter',
  9. 'vuex': 'Vuex',
  10. 'axios': 'axios',
  11. 'element-ui': 'ELEMENT',
  12. })
  13. const entry = config.entry('app')
  14. entry
  15. .add('babel-polyfill')
  16. .end()
  17. entry
  18. .add('classlist-polyfill')
  19. .end()
  20. entry
  21. .add('@/mock')
  22. .end()
  23. },
  24. devServer: {
  25. // 端口配置
  26. port: 1888,
  27. // 反向代理配置
  28. proxy: {
  29. '/api': {
  30. target: 'http://localhost',
  31. ws: true,
  32. pathRewrite: {
  33. '^/api': '/'
  34. }
  35. }
  36. }
  37. }
  38. }