vue.config.js 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. /**
  2. * @description vue.config.js全局配置
  3. */
  4. const path = require('path')
  5. const {
  6. /* baseURL, */
  7. publicPath,
  8. assetsDir,
  9. outputDir,
  10. lintOnSave,
  11. transpileDependencies,
  12. title,
  13. abbreviation,
  14. devPort,
  15. providePlugin,
  16. build7z,
  17. buildGzip,
  18. imageCompression,
  19. } = require('./src/config')
  20. const rely = require('vue-plugin-rely')
  21. const { webpackBarName, webpackBanner } = require('./vab.config')
  22. const { version, author } = require('./package.json')
  23. const Webpack = require('webpack')
  24. const WebpackBar = require('webpackbar')
  25. const FileManagerPlugin = require('filemanager-webpack-plugin')
  26. const dayjs = require('dayjs')
  27. const dateTime = dayjs().format('YYYY-M-D HH:mm:ss')
  28. const CompressionWebpackPlugin = require('compression-webpack-plugin')
  29. const productionGzipExtensions = ['html', 'js', 'css', 'svg']
  30. process.env.VUE_APP_TITLE = title
  31. process.env.VUE_APP_AUTHOR = author
  32. process.env.VUE_APP_UPDATE_TIME = dateTime
  33. process.env.VUE_APP_VERSION = version
  34. process.env.VUE_APP_RELY = rely
  35. const resolve = (dir) => {
  36. return path.join(__dirname, dir)
  37. }
  38. module.exports = {
  39. publicPath,
  40. assetsDir,
  41. outputDir,
  42. lintOnSave,
  43. transpileDependencies,
  44. devServer: {
  45. hot: true,
  46. port: devPort,
  47. open: true,
  48. noInfo: false,
  49. overlay: {
  50. warnings: true,
  51. errors: true,
  52. },
  53. // 注释掉的地方是前端配置代理访问后端的示例
  54. // baseURL必须为/xxx,而不是后端服务器,请先了解代理逻辑,再设置前端代理
  55. // !!!一定要注意!!!
  56. // 1.这里配置了跨域及代理只针对开发环境生效
  57. // 2.不建议你在前端配置跨域,建议你后端配置Allow-Origin,Method,Headers,放行token字段,一步到位
  58. // 3.后端配置了跨域,就不需要前端再配置,会发生Origin冲突
  59. // proxy: {
  60. // [baseURL]: {
  61. // target: `http://你的后端接口地址`,
  62. // ws: true,
  63. // changeOrigin: true,
  64. // pathRewrite: {
  65. // ['^' + baseURL]: '',
  66. // },
  67. // },
  68. // },
  69. after: require('./mock'),
  70. },
  71. configureWebpack() {
  72. return {
  73. resolve: {
  74. alias: {
  75. '~': resolve('.'),
  76. '@': resolve('src'),
  77. },
  78. },
  79. plugins: [
  80. new Webpack.ProvidePlugin(providePlugin),
  81. new WebpackBar({
  82. name: webpackBarName,
  83. }),
  84. ],
  85. }
  86. },
  87. chainWebpack(config) {
  88. config.resolve.symlinks(true)
  89. config.module.rule('svg').exclude.add(resolve('src/icon'))
  90. config.module
  91. .rule('vabIcon')
  92. .test(/\.svg$/)
  93. .include.add(resolve('src/icon'))
  94. .end()
  95. .use('svg-sprite-loader')
  96. .loader('svg-sprite-loader')
  97. .options({ symbolId: 'vab-icon-[name]' })
  98. config.when(process.env.NODE_ENV === 'development', (config) => {
  99. config.devtool('source-map')
  100. })
  101. config.when(process.env.NODE_ENV === 'production', (config) => {
  102. config.performance.set('hints', false)
  103. config.devtool('none')
  104. config.optimization.splitChunks({
  105. automaticNameDelimiter: '-',
  106. chunks: 'all',
  107. cacheGroups: {
  108. chunk: {
  109. name: 'chunk',
  110. test: /[\\/]node_modules[\\/]/,
  111. minSize: 131072,
  112. maxSize: 524288,
  113. chunks: 'async',
  114. minChunks: 2,
  115. priority: 10,
  116. },
  117. vue: {
  118. name: 'vue',
  119. test: /[\\/]node_modules[\\/](vue(.*)|core-js)[\\/]/,
  120. chunks: 'initial',
  121. priority: 20,
  122. },
  123. elementUI: {
  124. name: 'element-ui',
  125. test: /[\\/]node_modules[\\/]element-ui(.*)[\\/]/,
  126. priority: 30,
  127. },
  128. extra: {
  129. name: 'extra',
  130. test: resolve('src/extra'),
  131. priority: 40,
  132. },
  133. // 根据使用模块抽取公共代码
  134. // echarts: {
  135. // name: 'echarts',
  136. // test: /[\\/]node_modules[\\/](echarts|zrender|tslib)[\\/]/,
  137. // priority: 50,
  138. // },
  139. },
  140. })
  141. config
  142. .plugin('banner')
  143. .use(Webpack.BannerPlugin, [`${webpackBanner}${dateTime}`])
  144. if (imageCompression)
  145. config.module
  146. .rule('images')
  147. .use('image-webpack-loader')
  148. .loader('image-webpack-loader')
  149. .options({
  150. bypassOnDebug: true,
  151. })
  152. .end()
  153. if (buildGzip)
  154. config.plugin('compression').use(CompressionWebpackPlugin, [
  155. {
  156. filename: '[path][base].gz[query]',
  157. algorithm: 'gzip',
  158. test: new RegExp(
  159. '\\.(' + productionGzipExtensions.join('|') + ')$'
  160. ),
  161. threshold: 8192,
  162. minRatio: 0.8,
  163. },
  164. ])
  165. if (build7z)
  166. config.plugin('fileManager').use(FileManagerPlugin, [
  167. {
  168. events: {
  169. onEnd: {
  170. archive: [
  171. {
  172. source: `./${outputDir}`,
  173. destination: `./${outputDir}/${abbreviation}_${dayjs().unix()}.zip`,
  174. },
  175. ],
  176. },
  177. },
  178. },
  179. ])
  180. })
  181. },
  182. runtimeCompiler: true,
  183. productionSourceMap: false,
  184. css: {
  185. requireModuleExtension: true,
  186. sourceMap: true,
  187. loaderOptions: {
  188. scss: {
  189. additionalData(content, loaderContext) {
  190. const { resourcePath, rootContext } = loaderContext
  191. const relativePath = path.relative(rootContext, resourcePath)
  192. if (
  193. relativePath.replace(/\\/g, '/') !==
  194. 'src/vab/styles/variables/variables.scss'
  195. )
  196. return '@import "~@/vab/styles/variables/variables.scss";' + content
  197. return content
  198. },
  199. },
  200. },
  201. },
  202. }