vue.config.js 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. 'use strict'
  2. const path = require('path')
  3. const defaultSettings = require('./src/settings.js')
  4. function resolve(dir) {
  5. return path.join(__dirname, dir)
  6. }
  7. const name = defaultSettings.title || 'vue Element Admin' // 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 method:
  12. // port = 9527 npm run dev OR npm run dev --port = 9527
  13. const port = process.env.port || process.env.npm_config_port || 9527 // 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. open: true,
  31. overlay: {
  32. warnings: false,
  33. errors: true
  34. }
  35. // https: {
  36. // key: './cert.key',
  37. // cert: './cert.crt'
  38. // }
  39. },
  40. configureWebpack: {
  41. // provide the app's title in webpack's name field, so that
  42. // it can be accessed in index.html to inject the correct title.
  43. name: name,
  44. resolve: {
  45. alias: {
  46. '@': resolve('src')
  47. }
  48. }
  49. },
  50. chainWebpack(config) {
  51. // it can improve the speed of the first screen, it is recommended to turn on preload
  52. // it can improve the speed of the first screen, it is recommended to turn on preload
  53. config.plugin('preload').tap(() => [
  54. {
  55. rel: 'preload',
  56. // to ignore runtime.js
  57. // https://github.com/vuejs/vue-cli/blob/dev/packages/@vue/cli-service/lib/config/app.js#L171
  58. fileBlacklist: [/\.map$/, /hot-update\.js$/, /runtime\..*\.js$/],
  59. include: 'initial'
  60. }
  61. ])
  62. config.output.filename('[name].[hash].js').end()
  63. // when there are many pages, it will cause too many meaningless requests
  64. config.plugins.delete('prefetch')
  65. // set svg-sprite-loader
  66. config.module
  67. .rule('svg')
  68. .exclude.add(resolve('src/icons'))
  69. .end()
  70. config.module
  71. .rule('icons')
  72. .test(/\.svg$/)
  73. .include.add(resolve('src/icons'))
  74. .end()
  75. .use('svg-sprite-loader')
  76. .loader('svg-sprite-loader')
  77. .options({
  78. symbolId: 'icon-[name]'
  79. })
  80. .end()
  81. config.when(process.env.NODE_ENV !== 'development', config => {
  82. config
  83. .plugin('ScriptExtHtmlWebpackPlugin')
  84. .after('html')
  85. .use('script-ext-html-webpack-plugin', [
  86. {
  87. // `runtime` must same as runtimeChunk name. default is `runtime`
  88. inline: /runtime\..*\.js$/
  89. }
  90. ])
  91. .end()
  92. config.optimization.splitChunks({
  93. chunks: 'all',
  94. cacheGroups: {
  95. libs: {
  96. name: 'chunk-libs',
  97. test: /[\\/]node_modules[\\/]/,
  98. priority: 10,
  99. chunks: 'initial' // only package third parties that are initially dependent
  100. },
  101. elementUI: {
  102. name: 'chunk-elementUI', // split elementUI into a single package
  103. priority: 20, // the weight needs to be larger than libs and app or it will be packaged into libs or app
  104. test: /[\\/]node_modules[\\/]_?element-ui(.*)/ // in order to adapt to cnpm
  105. },
  106. commons: {
  107. name: 'chunk-commons',
  108. test: resolve('src/components'), // can customize your rules
  109. minChunks: 3, // minimum common number
  110. priority: 5,
  111. reuseExistingChunk: true
  112. }
  113. }
  114. })
  115. // https:// webpack.js.org/configuration/optimization/#optimizationruntimechunk
  116. config.optimization.runtimeChunk('single')
  117. })
  118. }
  119. }