vue.config.js 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. 'use strict'
  2. const StylelintPlugin = require('stylelint-webpack-plugin')
  3. const path = require('path')
  4. function resolve(dir) {
  5. return path.join(__dirname, dir)
  6. }
  7. const name = 'obopom - CRM' // page title
  8. // If your port is set to 80,
  9. // use administrator privileges to execute the command line.
  10. // For example, Mac: sudo npm run
  11. // You can change the port by the following methods:
  12. // port = 8090 npm run dev OR npm run dev --port = 8090
  13. const port = process.env.port || process.env.npm_config_port || 8090 // dev port
  14. // All configuration item explanations can be find in https://cli.vuejs.org/config/
  15. module.exports = {
  16. /**
  17. * You will need to set publicPath if you plan to deploy your site under a sub path,
  18. * for example GitHub Pages. If you plan to deploy your site to https://foo.github.io/bar/,
  19. * then publicPath should be set to "/bar/".
  20. * In most cases please use '/' !!!
  21. * Detail: https://cli.vuejs.org/config/#publicpath
  22. */
  23. publicPath: './',
  24. outputDir: 'dist',
  25. assetsDir: 'static',
  26. lintOnSave: process.env.NODE_ENV === 'development',
  27. productionSourceMap: false,
  28. devServer: {
  29. port: port,
  30. proxy: 'http://localhost:1001/',
  31. open: true,
  32. overlay: {
  33. warnings: false,
  34. errors: true
  35. }
  36. },
  37. configureWebpack: {
  38. // provide the app's title in webpack's name field, so that
  39. // it can be accessed in index.html to inject the correct title.
  40. name: name,
  41. resolve: {
  42. alias: {
  43. '@': resolve('src')
  44. }
  45. }
  46. },
  47. transpileDependencies: ['el-bigdata-table'],
  48. chainWebpack(config) {
  49. // it can improve the speed of the first screen, it is recommended to turn on preload
  50. config.plugin('preload').tap(() => [
  51. {
  52. rel: 'preload',
  53. // to ignore runtime.js
  54. // https://github.com/vuejs/vue-cli/blob/dev/packages/@vue/cli-service/lib/config/app.js#L171
  55. fileBlacklist: [/\.map$/, /hot-update\.js$/, /runtime\..*\.js$/],
  56. include: 'initial'
  57. }
  58. ])
  59. // css
  60. config.plugin('stylelint').use(StylelintPlugin, [
  61. {
  62. files: ['**/*.{html,vue,css,sass,scss}'],
  63. fix: false, // 自动修复
  64. cache: true,
  65. emitError: true,
  66. failOnError: false
  67. }
  68. ])
  69. // 参考 https://github.com/vuejs/vue-cli/issues/3088#issuecomment-572899228
  70. config.optimization.minimizer('terser').tap((args) => {
  71. args[0].terserOptions.compress.drop_console = true
  72. return args
  73. })
  74. // when there are many pages, it will cause too many meaningless requests
  75. config.plugins.delete('prefetch')
  76. const oneOfsMap = config.module.rule('scss').oneOfs.store
  77. oneOfsMap.forEach(item => {
  78. item
  79. .use('sass-resources-loader')
  80. .loader('sass-resources-loader')
  81. .options({
  82. resources: [
  83. resolve('src/styles/xr-theme.scss'),
  84. resolve('node_modules/element-ui/packages/theme-chalk/src/common/var.scss')
  85. ]
  86. })
  87. .end()
  88. })
  89. // set svg-sprite-loader
  90. config.module
  91. .rule('svg')
  92. .exclude.add(resolve('src/icons'))
  93. .end()
  94. config.module
  95. .rule('icons')
  96. .test(/\.svg$/)
  97. .include.add(resolve('src/icons'))
  98. .end()
  99. .use('svg-sprite-loader')
  100. .loader('svg-sprite-loader')
  101. .options({
  102. symbolId: 'icon-[name]'
  103. })
  104. .end()
  105. config
  106. .when(process.env.NODE_ENV !== 'development',
  107. config => {
  108. config
  109. .plugin('ScriptExtHtmlWebpackPlugin')
  110. .after('html')
  111. .use('script-ext-html-webpack-plugin', [{
  112. // `runtime` must same as runtimeChunk name. default is `runtime`
  113. inline: /runtime\..*\.js$/
  114. }])
  115. .end()
  116. config
  117. .optimization.splitChunks({
  118. chunks: 'all',
  119. cacheGroups: {
  120. libs: {
  121. name: 'chunk-libs',
  122. test: /[\\/]node_modules[\\/]/,
  123. priority: 10,
  124. chunks: 'initial' // only package third parties that are initially dependent
  125. },
  126. elementUI: {
  127. name: 'chunk-elementUI', // split elementUI into a single package
  128. priority: 20, // the weight needs to be larger than libs and app or it will be packaged into libs or app
  129. test: /[\\/]node_modules[\\/]_?element-ui(.*)/ // in order to adapt to cnpm
  130. },
  131. commons: {
  132. name: 'chunk-commons',
  133. test: resolve('src/components'), // can customize your rules
  134. minChunks: 3, // minimum common number
  135. priority: 5,
  136. reuseExistingChunk: true
  137. }
  138. }
  139. })
  140. // https:// webpack.js.org/configuration/optimization/#optimizationruntimechunk
  141. config.optimization.runtimeChunk('single')
  142. }
  143. )
  144. }
  145. }