vue.config.js 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. 'use strict'
  2. const path = require('path')
  3. const defaultSettings = require('./src/config/index.js')
  4. const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin
  5. const resolve = dir => path.join(__dirname, dir)
  6. // page title
  7. const name = defaultSettings.title || 'vue mobile template'
  8. const IS_PROD = ['production', 'prod'].includes(process.env.NODE_ENV)
  9. // externals
  10. // const externals = {
  11. // vue: 'Vue',
  12. // 'vue-router': 'VueRouter',
  13. // vuex: 'Vuex',
  14. // vant: 'vant',
  15. // axios: 'axios'
  16. // }
  17. // CDN外链,会插入到index.html中
  18. // const cdn = {
  19. // // 开发环境
  20. // dev: {
  21. // css: [],
  22. // js: []
  23. // },
  24. // // 生产环境
  25. // build: {
  26. // css: ['https://cdn.jsdelivr.net/npm/vant@2.4.7/lib/index.css'],
  27. // js: [
  28. // 'https://cdn.jsdelivr.net/npm/vue@2.6.11/dist/vue.min.js',
  29. // 'https://cdn.jsdelivr.net/npm/vue-router@3.1.5/dist/vue-router.min.js',
  30. // 'https://cdn.jsdelivr.net/npm/axios@0.19.2/dist/axios.min.js',
  31. // 'https://cdn.jsdelivr.net/npm/vuex@3.1.2/dist/vuex.min.js',
  32. // 'https://cdn.jsdelivr.net/npm/vant@2.4.7/lib/index.min.js'
  33. // ]
  34. // }
  35. // }
  36. module.exports = {
  37. publicPath: './', // 署应用包时的基本 URL。 vue-router hash 模式使用
  38. // publicPath: '/app/', //署应用包时的基本 URL。 vue-router history模式使用
  39. outputDir: 'dist', // 生产环境构建文件的目录
  40. assetsDir: 'static', // outputDir的静态资源(js、css、img、fonts)目录
  41. // lintOnSave: !IS_PROD,
  42. lintOnSave: false,
  43. productionSourceMap: false, // 如果你不需要生产环境的 source map,可以将其设置为 false 以加速生产环境构建。
  44. devServer: {
  45. port: 9020, // 端口
  46. open: true, // 启动后打开浏览器
  47. overlay: {
  48. // 当出现编译器错误或警告时,在浏览器中显示全屏覆盖层
  49. warnings: false,
  50. errors: true
  51. }
  52. // proxy: {
  53. // //配置跨域
  54. // '/api': {
  55. // target: "https://test.xxx.com",
  56. // // ws:true,
  57. // changOrigin:true,
  58. // pathRewrite:{
  59. // '^/api':'/'
  60. // }
  61. // }
  62. // }
  63. },
  64. css: {
  65. extract: IS_PROD, // 是否将组件中的 CSS 提取至一个独立的 CSS 文件中 (而不是动态注入到 JavaScript 中的 inline 代码)。
  66. sourceMap: false,
  67. loaderOptions: {
  68. scss: {
  69. // 向全局sass样式传入共享的全局变量, $src可以配置图片cdn前缀
  70. // 详情: https://cli.vuejs.org/guide/css.html#passing-options-to-pre-processor-loaders
  71. prependData: `
  72. @import "assets/css/mixin.scss";
  73. @import "assets/css/variables.scss";
  74. $cdn: "${defaultSettings.$cdn}";
  75. `
  76. }
  77. }
  78. },
  79. configureWebpack: config => {
  80. config.name = name
  81. // 为生产环境修改配置...
  82. // if (IS_PROD) {
  83. // // externals
  84. // config.externals = externals
  85. // }
  86. },
  87. chainWebpack: config => {
  88. config.plugins.delete('preload') // TODO: need test
  89. config.plugins.delete('prefetch') // TODO: need test
  90. // 别名 alias
  91. config.resolve.alias
  92. .set('@', resolve('src'))
  93. .set('assets', resolve('src/assets'))
  94. .set('api', resolve('src/api'))
  95. .set('views', resolve('src/views'))
  96. .set('components', resolve('src/components'))
  97. /**
  98. * 添加CDN参数到htmlWebpackPlugin配置中
  99. */
  100. // config.plugin('html').tap(args => {
  101. // if (IS_PROD) {
  102. // args[0].cdn = cdn.build
  103. // } else {
  104. // args[0].cdn = cdn.dev
  105. // }
  106. // return args
  107. // })
  108. /**
  109. * 设置保留空格
  110. */
  111. config.module
  112. .rule('vue')
  113. .use('vue-loader')
  114. .loader('vue-loader')
  115. .tap(options => {
  116. options.compilerOptions.preserveWhitespace = true
  117. return options
  118. })
  119. .end()
  120. /**
  121. * 打包分析
  122. */
  123. if (IS_PROD) {
  124. config.plugin('webpack-report').use(BundleAnalyzerPlugin, [
  125. {
  126. analyzerMode: 'static'
  127. }
  128. ])
  129. }
  130. config
  131. // https://webpack.js.org/configuration/devtool/#development
  132. .when(!IS_PROD, config => config.devtool('cheap-source-map'))
  133. config.when(IS_PROD, config => {
  134. config
  135. .plugin('ScriptExtHtmlWebpackPlugin')
  136. .after('html')
  137. .use('script-ext-html-webpack-plugin', [
  138. {
  139. // 将 runtime 作为内联引入不单独存在
  140. inline: /runtime\..*\.js$/
  141. }
  142. ])
  143. .end()
  144. config.optimization.splitChunks({
  145. chunks: 'all',
  146. cacheGroups: {
  147. // cacheGroups 下可以可以配置多个组,每个组根据test设置条件,符合test条件的模块
  148. commons: {
  149. name: 'chunk-commons',
  150. test: resolve('src/components'),
  151. minChunks: 3, // 被至少用三次以上打包分离
  152. priority: 5, // 优先级
  153. reuseExistingChunk: true // 表示是否使用已有的 chunk,如果为 true 则表示如果当前的 chunk 包含的模块已经被抽取出去了,那么将不会重新生成新的。
  154. },
  155. node_vendors: {
  156. name: 'chunk-libs',
  157. chunks: 'initial', // 只打包初始时依赖的第三方
  158. test: /[\\/]node_modules[\\/]/,
  159. priority: 10
  160. },
  161. vantUI: {
  162. name: 'chunk-vantUI', // 单独将 vantUI 拆包
  163. priority: 20, // 数字大权重到,满足多个 cacheGroups 的条件时候分到权重高的
  164. test: /[\\/]node_modules[\\/]_?vant(.*)/
  165. }
  166. }
  167. })
  168. config.optimization.runtimeChunk('single')
  169. })
  170. }
  171. }