vue.config.js 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. // vue.config.js
  2. const path = require('path')
  3. const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer')
  4. const CompressionPlugin = require('compression-webpack-plugin')// 引入gzip压缩插件
  5. const SkeletonWebpackPlugin = require('vue-skeleton-webpack-plugin')
  6. function resolve (dir) {
  7. return path.join(__dirname, dir)
  8. }
  9. module.exports = {
  10. publicPath: './',
  11. // 将构建好的文件输出到哪里
  12. outputDir: 'static',
  13. // 放置生成的静态资源(js、css、img、fonts)的目录。
  14. assetsDir: 'assets',
  15. // 指定生成的 index.html 的输出路径
  16. indexPath: 'index.html',
  17. // 是否使用包含运行时编译器的 Vue 构建版本。设置为 true 后你就可以在 Vue 组件中使用 template 选项了,但是这会让你的应用额外增加 10kb 左右。
  18. runtimeCompiler: false,
  19. // 默认情况下 babel-loader 会忽略所有 node_modules 中的文件。如果你想要通过 Babel 显式转译一个依赖,可以在这个选项中列出来。
  20. transpileDependencies: [],
  21. // 生产环境关闭 source map
  22. productionSourceMap: false,
  23. // lintOnSave: true,
  24. // 配置css
  25. css: {
  26. // 是否使用css分离插件 ExtractTextPlugin
  27. extract: true,
  28. sourceMap: true,
  29. // css预设器配置项
  30. loaderOptions: {
  31. postcss: {
  32. plugins: [
  33. require('postcss-px2rem')({
  34. remUnit: 100
  35. })
  36. ]
  37. }
  38. },
  39. // 启用 CSS modules for all css / pre-processor files.
  40. modules: false
  41. },
  42. // 是一个函数,会接收一个基于 webpack-chain 的 ChainableConfig 实例。允许对内部的 webpack 配置进行更细粒度的修改。
  43. chainWebpack: config => {
  44. // 配置别名
  45. config.resolve.alias
  46. .set('@', resolve('src'))
  47. .set('assets', resolve('src/assets'))
  48. .set('components', resolve('src/components'))
  49. .set('views', resolve('src/views'))
  50. // config.optimization.minimizer('terser').tap((args) => {
  51. // // 去除生产环境console
  52. // args[0].terserOptions.compress.drop_console = true
  53. // return args
  54. // })
  55. const svgRule = config.module.rule('svg')
  56. svgRule.uses.clear()
  57. svgRule.exclude.add(/node_modules/)
  58. svgRule
  59. .test(/\.svg$/)
  60. .use('svg-sprite-loader')
  61. .loader('svg-sprite-loader')
  62. .options({
  63. symbolId: 'icon-[name]'
  64. })
  65. const imagesRule = config.module.rule('images')
  66. imagesRule.exclude.add(resolve('src/components/icon/svg'))
  67. config.module.rule('images').test(/\.(png|jpe?g|gif|svg)(\?.*)?$/)
  68. },
  69. configureWebpack: (config) => {
  70. config.plugins.push(new SkeletonWebpackPlugin({
  71. webpackConfig: {
  72. entry: {
  73. app: path.join(__dirname, './src/common/entry-skeleton.js')
  74. }
  75. },
  76. minimize: true,
  77. quiet: true
  78. }))
  79. if (process.env.NODE_ENV === 'production') {
  80. config.plugins.push(new BundleAnalyzerPlugin())
  81. config.plugins.push(new CompressionPlugin({ // gzip压缩配置
  82. test: /\.js$|\.html$|\.css/, // 匹配文件名
  83. threshold: 10240, // 对超过10kb的数据进行压缩
  84. deleteOriginalAssets: false // 是否删除原文件
  85. }))
  86. }
  87. },
  88. // 是否为 Babel 或 TypeScript 使用 thread-loader。该选项在系统的 CPU 有多于一个内核时自动启用,仅作用于生产构建。
  89. parallel: require('os').cpus().length > 1,
  90. // 向 PWA 插件传递选项。
  91. // https://github.com/vuejs/vue-cli/tree/dev/packages/%40vue/cli-plugin-pwa
  92. pwa: {},
  93. devServer: {
  94. host: '0.0.0.0',
  95. port: 8089, // 端口号
  96. https: false, // https:{type:Boolean}
  97. open: false // 配置自动启动浏览器 open: 'Google Chrome'-默认启动谷
  98. }
  99. }