vue.config.js 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. const path = require('path')
  2. const webpack = require('webpack')
  3. const createThemeColorReplacerPlugin = require('./config/plugin.config')
  4. function resolve (dir) {
  5. return path.join(__dirname, dir)
  6. }
  7. // vue.config.js
  8. const vueConfig = {
  9. configureWebpack: {
  10. plugins: [
  11. // Ignore all locale files of moment.js
  12. new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/)
  13. ]
  14. },
  15. chainWebpack: (config) => {
  16. config.resolve.alias
  17. .set('@$', resolve('src'))
  18. const svgRule = config.module.rule('svg')
  19. svgRule.uses.clear()
  20. svgRule
  21. .oneOf('inline')
  22. .resourceQuery(/inline/)
  23. .use('vue-svg-icon-loader')
  24. .loader('vue-svg-icon-loader')
  25. .end()
  26. .end()
  27. .oneOf('external')
  28. .use('file-loader')
  29. .loader('file-loader')
  30. .options({
  31. name: 'assets/[name].[hash:8].[ext]'
  32. })
  33. },
  34. css: {
  35. loaderOptions: {
  36. less: {
  37. modifyVars: {
  38. // less vars,customize ant design theme
  39. // 'primary-color': '#F5222D',
  40. // 'link-color': '#F5222D',
  41. // 'border-radius-base': '4px'
  42. },
  43. javascriptEnabled: true
  44. }
  45. }
  46. },
  47. devServer: {
  48. // development server port 8000
  49. port: 8000
  50. // If you want to turn on the proxy, please remove the mockjs /src/main.jsL11
  51. // proxy: {
  52. // '/api': {
  53. // target: 'https://mock.ihx.me/mock/5baf3052f7da7e07e04a5116/antd-pro',
  54. // ws: false,
  55. // changeOrigin: true
  56. // }
  57. // }
  58. },
  59. // disable source map in production
  60. productionSourceMap: false,
  61. lintOnSave: undefined,
  62. // babel-loader no-ignore node_modules/*
  63. transpileDependencies: []
  64. }
  65. // preview.pro.loacg.com only do not use in your production;
  66. if (process.env.NODE_ENV !== 'production' || process.env.VUE_APP_PREVIEW === 'true') {
  67. // add `ThemeColorReplacer` plugin to webpack plugins
  68. vueConfig.configureWebpack.plugins.push(createThemeColorReplacerPlugin())
  69. }
  70. module.exports = vueConfig