vue.config.js 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. /**
  2. * @description vue.config.js全局配置
  3. */
  4. const path = require('path')
  5. const {
  6. /* baseURL, */
  7. publicPath,
  8. assetsDir,
  9. outputDir,
  10. transpileDependencies,
  11. title,
  12. abbreviation,
  13. devPort,
  14. providePlugin,
  15. build7z,
  16. buildGzip,
  17. imageCompression,
  18. } = require('./src/config')
  19. // const rely = require('vue-plugin-rely')
  20. const { webpackBarName, webpackBanner } = require('./vab.config')
  21. const { version, author } = require('./package.json')
  22. const Webpack = require('webpack')
  23. const WebpackBar = require('webpackbar')
  24. const FileManagerPlugin = require('filemanager-webpack-plugin')
  25. const dayjs = require('dayjs')
  26. const dateTime = dayjs().format('YYYY-M-D HH:mm:ss')
  27. const CompressionWebpackPlugin = require('compression-webpack-plugin')
  28. const productionGzipExtensions = ['html', 'js', 'css', 'svg']
  29. process.env.VUE_APP_TITLE = title
  30. process.env.VUE_APP_AUTHOR = author
  31. process.env.VUE_APP_RANDOM = `${dayjs()}-${process.env.VUE_GITHUB_USER_NAME}`
  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: false,
  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: 'vab-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: 'vab-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.plugin('banner').use(Webpack.BannerPlugin, [`${webpackBanner}${dateTime}`])
  142. if (imageCompression)
  143. config.module
  144. .rule('images')
  145. .use('image-webpack-loader')
  146. .loader('image-webpack-loader')
  147. .options({
  148. bypassOnDebug: true,
  149. })
  150. .end()
  151. if (buildGzip)
  152. config.plugin('compression').use(CompressionWebpackPlugin, [
  153. {
  154. filename: '[path][base].gz[query]',
  155. algorithm: 'gzip',
  156. test: new RegExp('\\.(' + productionGzipExtensions.join('|') + ')$'),
  157. threshold: 8192,
  158. minRatio: 0.8,
  159. },
  160. ])
  161. if (build7z)
  162. config.plugin('fileManager').use(FileManagerPlugin, [
  163. {
  164. events: {
  165. onEnd: {
  166. archive: [
  167. {
  168. source: `./${outputDir}`,
  169. destination: `./${outputDir}/${abbreviation}_${dayjs().unix()}.zip`,
  170. },
  171. ],
  172. },
  173. },
  174. },
  175. ])
  176. })
  177. },
  178. runtimeCompiler: true,
  179. productionSourceMap: false,
  180. css: {
  181. requireModuleExtension: true,
  182. sourceMap: true,
  183. loaderOptions: {
  184. sass: {
  185. sassOptions: { outputStyle: 'expanded' },
  186. additionalData(content, loaderContext) {
  187. const { resourcePath, rootContext } = loaderContext
  188. const relativePath = path.relative(rootContext, resourcePath)
  189. if (relativePath.replace(/\\/g, '/') !== 'src/vab/styles/variables/variables.scss')
  190. return '@import "~@/vab/styles/variables/variables.scss";' + content
  191. return content
  192. },
  193. },
  194. },
  195. },
  196. }