vue.config.js 936 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. //111
  2. const config = require('./src/config/index.json');
  3. module.exports = {
  4. //路径前缀
  5. publicPath: "/",
  6. lintOnSave: true,
  7. productionSourceMap: false,
  8. chainWebpack: (config) => {
  9. //忽略的打包文件
  10. config.externals({
  11. 'vue': 'Vue',
  12. 'vue-router': 'VueRouter',
  13. 'vuex': 'Vuex',
  14. 'axios': 'axios',
  15. 'element-ui': 'ELEMENT',
  16. });
  17. const entry = config.entry('app');
  18. entry.add('babel-polyfill').end();
  19. entry.add('classlist-polyfill').end();
  20. entry.add('@/mock').end();
  21. },
  22. css: {
  23. extract: {ignoreOrder: true}
  24. },
  25. //开发模式反向代理配置,生产模式请使用Nginx部署并配置反向代理
  26. devServer: {
  27. ...config.dev,
  28. proxy: {
  29. '/api': {
  30. // 请到 src/config/index.json 文件中修改 target 属性
  31. target: config.target,
  32. ws: true,
  33. pathRewrite: {
  34. '^/api': '/'
  35. }
  36. }
  37. }
  38. }
  39. };