当前位置:   article > 正文

vue.config.js详解_vue.config.js exclude

vue.config.js exclude

vue.config.js 是一个可选的配置文件,如果项目的 (和 package.json 同级的) 根目录中存在这个文件,那么它会被 @vue/cli-service 自动加载。

配置项详情见   配置参考 | Vue CLI

  1. 'use strict'
  2. // import proxy from './proxy.config.js'
  3. const proxy = require('./src/proxy.config.js')
  4. const path = require('path')
  5. const defaultSettings = require('./src/settings.js')
  6. const CompressionWebpackPlugin = require('compression-webpack-plugin')
  7. // const WebpackBundleAnalyzer = require('webpack-bundle-analyzer').BundleAnalyzerPlugin
  8. function resolve(dir) {
  9. return path.join(__dirname, dir)
  10. }
  11. const name = defaultSettings.title || 'vue Element Admin' // page title
  12. // If your port is set to 80,
  13. // use administrator privileges to execute the command line.
  14. // For example, Mac: sudo npm run
  15. // You can change the port by the following method:
  16. // port = 9527 npm run dev OR npm run dev --port = 9527
  17. const port = process.env.port || process.env.npm_config_port || 9527 // dev port
  18. // All configuration item explanations can be find in https://cli.vuejs.org/config/
  19. module.exports = {
  20. /**
  21. * You will need to set publicPath if you plan to deploy your site under a sub path,
  22. * for example GitHub Pages. If you plan to deploy your site to https://foo.github.io/bar/,
  23. * then publicPath should be set to "/bar/".
  24. * In most cases please use '/' !!!
  25. * Detail: https://cli.vuejs.org/config/#publicpath
  26. */
  27. publicPath: '/',
  28. outputDir: 'dist',
  29. assetsDir: 'static',
  30. // lintOnSave: process.env.VUE_APP_ENV === 'development', // 太多警告没解决,lint会造成serve热更新时间过长
  31. lintOnSave: false,
  32. productionSourceMap: false,
  33. devServer: {
  34. port: port,
  35. open: true,
  36. overlay: {
  37. warnings: false,
  38. errors: true
  39. },
  40. proxy: proxy
  41. },
  42. // configureWebpack: {
  43. // plugins: [
  44. // new CompressionWebpackPlugin({
  45. // filename: '[path].gzip[query]', // 提示compression-webpack-plugin@2.0.0的话filename改为asset
  46. // algorithm: 'gzip',
  47. // test: new RegExp('\\.(' + productionGzipExtensions.join('|') + ')$'),
  48. // threshold: 10240, //内容超过10KB进行压缩
  49. // minRatio: 0.8
  50. // }),
  51. // new BundleAnalyzerPlugin()
  52. // ],
  53. // name,
  54. // resolve: {
  55. // alias: {
  56. // '@': resolve('src')
  57. // }
  58. // }
  59. // },
  60. configureWebpack: config => {
  61. return {
  62. // plugins: [
  63. // new CompressionWebpackPlugin({
  64. // // asset: '[path].gz[query]',
  65. // filename: '[path].gz[query]',
  66. // algorithm: 'gzip',
  67. // test: /\.(js|css|json|txt|html|ico|svg)(\?.*)?$/i,
  68. // threshold: 2048,
  69. // minRatio: 0.8
  70. // }),
  71. // new WebpackBundleAnalyzer()
  72. // ],
  73. name,
  74. resolve: {
  75. alias: {
  76. '@': resolve('src')
  77. }
  78. },
  79. externals: {
  80. 'echarts': 'echarts',
  81. // 'axios': 'axios',
  82. 'vue-clipboard2': 'VueClipboard',
  83. 'moment': 'moment'
  84. }
  85. }
  86. },
  87. transpileDependencies: [
  88. 'hui',
  89. /@hui-pro/
  90. ],
  91. chainWebpack(config) {
  92. config.plugins.delete('preload') // TODO: need test
  93. config.plugins.delete('prefetch') // TODO: need test
  94. // set svg-sprite-loader
  95. config.module
  96. .rule('svg')
  97. .exclude.add(resolve('src/icons'))
  98. .end()
  99. config.module
  100. .rule('icons')
  101. .test(/\.svg$/)
  102. .include.add(resolve('src/icons'))
  103. .end()
  104. .use('svg-sprite-loader')
  105. .loader('svg-sprite-loader')
  106. .options({
  107. symbolId: 'icon-[name]'
  108. })
  109. .end()
  110. // set preserveWhitespace
  111. config.module
  112. .rule('vue')
  113. .exclude.add(resolve('src/example'))
  114. .end()
  115. .use('vue-loader')
  116. .loader('vue-loader')
  117. .tap(options => {
  118. options.compilerOptions.preserveWhitespace = true
  119. return options
  120. })
  121. .end()
  122. config.output.filename('[name].[hash].js').end()
  123. config
  124. // https://webpack.js.org/configuration/devtool/#development
  125. .when(process.env.VUE_APP_ENV === 'development',
  126. config => config.devtool('cheap-source-map')
  127. )
  128. config.plugin('compressionPlugin').use(new CompressionWebpackPlugin({
  129. test: /\.js$|\.html$|.\css/, // 匹配文件名
  130. threshold: 10240, // 对超过10k的数据压缩
  131. deleteOriginalAssets: false // 不删除源文件
  132. }))
  133. config
  134. .when(process.env.VUE_APP_ENV !== 'development',
  135. config => {
  136. config
  137. .plugin('ScriptExtHtmlWebpackPlugin')
  138. .after('html')
  139. .use('script-ext-html-webpack-plugin', [{
  140. // `runtime` must same as runtimeChunk name. default is `runtime`
  141. inline: /runtime\..*\.js$/
  142. }])
  143. .end()
  144. config
  145. .optimization.splitChunks({
  146. chunks: 'all',
  147. maxSize: 1000 * 1024, // 200kb,尝试将大于200kb的文件拆分成n个200kb的文件
  148. // automaticNameDelimiter: '_',
  149. cacheGroups: {
  150. libs: {
  151. name: 'chunk-libs',
  152. test: /[\\/]node_modules[\\/]/,
  153. priority: 10,
  154. chunks: 'initial' // only package third parties that are initially dependent
  155. },
  156. commons: {
  157. name: 'chunk-commons',
  158. test: resolve('src/components'), // can customize your rules
  159. minChunks: 3, // minimum common number
  160. priority: 5,
  161. reuseExistingChunk: true
  162. }
  163. }
  164. })
  165. config.optimization.runtimeChunk('single')
  166. }
  167. )
  168. }
  169. }

1.'use strict' //声明为严格模式,不能使用未声明的变量

2.const path = require("path") //引入node.js工具模块path,用来处理文件路径的小工具

3.function resolve(dir) {return path.join(__dirname, dir)}  //获取dir的绝对路径

4.const port = process.env.port || process.env.npm_config_port || 9527   //赋值port:如果当前环境端口存在则为当前环境端口,否则找process.env.npm_config_port这个属性,还没有则赋值9527

5.module.exports //commonJS的模块化 注意与ES6模块化的区别

6.publicPath: '/', //部署应用包时的基本 URL

7.outputDir: 'dist', //输出文件目录,当运行 vue-cli-service build 时生成的生产环境构建文件的目录。注意目标目录在构建之前会被清除 (构建时传入 --no-clean 可关闭该行为)。

8.assetsDir: 'static', //放置生成的静态资源 (js、css、img、fonts) 的目录。

9.lintOnSave: false, //是否在保存的时候使用 `eslint-loader` 进行检查,有效的值:`ture` | `false` | `"error"`  当设置为 `"error"` 时,检查出的错误会触发编译失败。

10.productionSourceMap: false, //如果你不需要生产环境的 source map,可以将其设置为 false 以加速生产环境构建。

11.devServer中的proxy // 代理

12.configureWebpack //webpack配置项,详情见 Working with Webpack | Vue CLI

13.transpileDependencies //默认情况下 babel-loader 会忽略所有 node_modules 中的文件。你可以启用本选项,以避免构建后的代码中出现未转译的第三方依赖。

不过,对所有的依赖都进行转译可能会降低构建速度。如果对构建性能有所顾虑,你可以只转译部分特定的依赖:给本选项传一个数组,列出需要转译的第三方包包名或正则表达式即可。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/86176
推荐阅读
相关标签
  

闽ICP备14008679号