vue.config.js 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. const path = require('path')
  2. const webpack = require('webpack')
  3. const GitRevisionPlugin = require('git-revision-webpack-plugin')
  4. const GitRevision = new GitRevisionPlugin()
  5. const buildDate = JSON.stringify(new Date().toLocaleString())
  6. const createThemeColorReplacerPlugin = require('./config/plugin.config')
  7. const CompressionWebpackPlugin = require('compression-webpack-plugin')
  8. const productionGzipExtensions = ['js', 'css']
  9. function resolve(dir) {
  10. return path.join(__dirname, dir)
  11. }
  12. // check Git
  13. function getGitHash() {
  14. try {
  15. return GitRevision.version()
  16. } catch (e) { }
  17. return 'unknown'
  18. }
  19. const isProd = process.env.NODE_ENV === 'production'
  20. const assetsCDN = {
  21. // webpack build externals
  22. externals: {
  23. vue: 'Vue',
  24. 'vue-router': 'VueRouter',
  25. vuex: 'Vuex',
  26. axios: 'axios'
  27. },
  28. css: [],
  29. // https://unpkg.com/browse/vue@2.6.10/
  30. js: [
  31. '/vue.min.js',
  32. '/vue-router.min.js',
  33. '/vuex.min.js',
  34. '/axios.min.js'
  35. ]
  36. }
  37. // vue.config.js
  38. const vueConfig = {
  39. configureWebpack: {
  40. // webpack plugins
  41. plugins: [
  42. // Ignore all locale files of moment.js
  43. new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/),
  44. new webpack.DefinePlugin({
  45. APP_VERSION: `"${require('./package.json').version}"`,
  46. GIT_HASH: JSON.stringify(getGitHash()),
  47. BUILD_DATE: buildDate
  48. }),
  49. // 配置compression-webpack-plugin压缩
  50. new CompressionWebpackPlugin({
  51. algorithm: 'gzip',
  52. test: new RegExp('\\.(' + productionGzipExtensions.join('|') + ')$'),
  53. threshold: 10240,
  54. minRatio: 0.8
  55. })
  56. ],
  57. // if prod, add externals
  58. externals: isProd ? assetsCDN.externals : {}
  59. },
  60. chainWebpack: (config) => {
  61. config.resolve.alias
  62. .set('@$', resolve('src'))
  63. .set('@assets', resolve('src/assets'))
  64. .set('@views', resolve('src/views'))
  65. const svgRule = config.module.rule('svg')
  66. svgRule.uses.clear()
  67. svgRule
  68. .oneOf('inline')
  69. .resourceQuery(/inline/)
  70. .use('vue-svg-icon-loader')
  71. .loader('vue-svg-icon-loader')
  72. .end()
  73. .end()
  74. .oneOf('external')
  75. .use('file-loader')
  76. .loader('file-loader')
  77. .options({
  78. name: 'assets/[name].[hash:8].[ext]'
  79. })
  80. // if prod is on
  81. // assets require on cdn
  82. if (isProd) {
  83. config.plugin('html').tap(args => {
  84. args[0].cdn = assetsCDN
  85. return args
  86. })
  87. }
  88. },
  89. css: {
  90. loaderOptions: {
  91. less: {
  92. modifyVars: {
  93. // less vars,customize ant design theme
  94. 'primary-color': '#2f54eb',
  95. // 'link-color': '#F5222D',
  96. //'border-radius-base': '2px'
  97. },
  98. // DO NOT REMOVE THIS LINE
  99. javascriptEnabled: true
  100. }
  101. }
  102. },
  103. devServer: {
  104. // development server port 8000
  105. port: 80,
  106. // If you want to turn on the proxy, please remove the mockjs /src/main.jsL11
  107. proxy: {
  108. // detail: https://cli.vuejs.org/config/#devserver-proxy
  109. [process.env.VUE_APP_BASE_API]: {
  110. // target: `https://aidex.setworld.net`,
  111. target: `http://127.0.0.1:8080`,
  112. changeOrigin: true,
  113. pathRewrite: {
  114. ['^' + process.env.VUE_APP_BASE_API]: ''
  115. }
  116. }
  117. },
  118. disableHostCheck: true //增加该设置是为了解决使用外网映射工具映射时报错--可以删除
  119. },
  120. // disable source map in production
  121. productionSourceMap: false,
  122. lintOnSave: undefined,
  123. // babel-loader no-ignore node_modules/*
  124. transpileDependencies: []
  125. }
  126. // preview.pro.loacg.com only do not use in your production;
  127. if (process.env.VUE_APP_PREVIEW === 'true') {
  128. console.log('VUE_APP_PREVIEW', true)
  129. // add `ThemeColorReplacer` plugin to webpack plugins
  130. vueConfig.configureWebpack.plugins.push(createThemeColorReplacerPlugin())
  131. }
  132. module.exports = vueConfig