vue.config.js 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  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://web.mentor.site.ximengnaikang.com/api`,
  62. // target: `http://bencao.site.xmnk.cn/api`,
  63. target: `http://192.168.12.123:10041`,
  64. ws: true,
  65. changeOrigin: true,
  66. pathRewrite: {
  67. ['^' + baseURL]: '',
  68. },
  69. },
  70. },
  71. after: require('./mock'),
  72. },
  73. configureWebpack() {
  74. return {
  75. resolve: {
  76. alias: {
  77. '~': resolve('.'),
  78. '@': resolve('src'),
  79. },
  80. },
  81. plugins: [
  82. new Webpack.ProvidePlugin(providePlugin),
  83. new WebpackBar({
  84. name: webpackBarName,
  85. }),
  86. ],
  87. }
  88. },
  89. chainWebpack(config) {
  90. config.resolve.symlinks(true)
  91. config.module.rule('svg').exclude.add(resolve('src/icon'))
  92. config.module
  93. .rule('vabIcon')
  94. .test(/\.svg$/)
  95. .include.add(resolve('src/icon'))
  96. .end()
  97. .use('svg-sprite-loader')
  98. .loader('svg-sprite-loader')
  99. .options({ symbolId: 'vab-icon-[name]' })
  100. config.when(process.env.NODE_ENV === 'development', (config) => {
  101. config.devtool('source-map')
  102. })
  103. config.when(process.env.NODE_ENV === 'production', (config) => {
  104. config.performance.set('hints', false)
  105. config.devtool('none')
  106. config.optimization.splitChunks({
  107. automaticNameDelimiter: '-',
  108. chunks: 'all',
  109. cacheGroups: {
  110. chunk: {
  111. name: 'chunk',
  112. test: /[\\/]node_modules[\\/]/,
  113. minSize: 131072,
  114. maxSize: 524288,
  115. chunks: 'async',
  116. minChunks: 2,
  117. priority: 10,
  118. },
  119. vue: {
  120. name: 'vue',
  121. test: /[\\/]node_modules[\\/](vue(.*)|core-js)[\\/]/,
  122. chunks: 'initial',
  123. priority: 20,
  124. },
  125. elementUI: {
  126. name: 'element-ui',
  127. test: /[\\/]node_modules[\\/]element-ui(.*)[\\/]/,
  128. priority: 30,
  129. },
  130. extra: {
  131. name: 'extra',
  132. test: resolve('src/extra'),
  133. priority: 40,
  134. },
  135. // 根据使用模块抽取公共代码
  136. // echarts: {
  137. // name: 'echarts',
  138. // test: /[\\/]node_modules[\\/](echarts|zrender|tslib)[\\/]/,
  139. // priority: 50,
  140. // },
  141. },
  142. })
  143. config
  144. .plugin('banner')
  145. .use(Webpack.BannerPlugin, [`${webpackBanner}${dateTime}`])
  146. if (imageCompression)
  147. config.module
  148. .rule('images')
  149. .use('image-webpack-loader')
  150. .loader('image-webpack-loader')
  151. .options({
  152. bypassOnDebug: true,
  153. })
  154. .end()
  155. if (buildGzip)
  156. config.plugin('compression').use(CompressionWebpackPlugin, [
  157. {
  158. filename: '[path][base].gz[query]',
  159. algorithm: 'gzip',
  160. test: new RegExp(
  161. '\\.(' + productionGzipExtensions.join('|') + ')$'
  162. ),
  163. threshold: 8192,
  164. minRatio: 0.8,
  165. },
  166. ])
  167. if (build7z)
  168. config.plugin('fileManager').use(FileManagerPlugin, [
  169. {
  170. events: {
  171. onEnd: {
  172. archive: [
  173. {
  174. source: `./${outputDir}`,
  175. destination: `./${outputDir}/${abbreviation}_${dayjs().unix()}.zip`,
  176. },
  177. ],
  178. },
  179. },
  180. },
  181. ])
  182. })
  183. },
  184. runtimeCompiler: true,
  185. productionSourceMap: false,
  186. css: {
  187. requireModuleExtension: true,
  188. sourceMap: true,
  189. loaderOptions: {
  190. scss: {
  191. additionalData(content, loaderContext) {
  192. const { resourcePath, rootContext } = loaderContext
  193. const relativePath = path.relative(rootContext, resourcePath)
  194. if (
  195. relativePath.replace(/\\/g, '/') !==
  196. 'src/vab/styles/variables/variables.scss'
  197. )
  198. return '@import "~@/vab/styles/variables/variables.scss";' + content
  199. return content
  200. },
  201. },
  202. },
  203. },
  204. }