vue.config.js 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. 'use strict';
  2. const path = require('path');
  3. function resolve(dir) {
  4. return path.join(__dirname, dir);
  5. }
  6. const CompressionPlugin = require('compression-webpack-plugin');
  7. // 设置不参与构建的库
  8. const externals = {};
  9. const name = '农业平台'; // 网页标题
  10. const port = 2999; // 端口
  11. // vue.config.js 配置说明
  12. // 官方vue.config.js 参考文档 https://cli.vuejs.org/zh/config/#css-loaderoptions
  13. // 这里只列一部分,具体配置参考文档
  14. const systemId = 'nh-sale';
  15. module.exports = {
  16. transpileDependencies: ['sockjs-client', 'js-base64', 'js-cookie'], // 是否引用第三方 es6+ 的插件进行ie兼容
  17. publicPath: process.env.NODE_ENV === 'production' ? `/${systemId}` : `/${systemId}`,
  18. // 在npm run build 或 yarn build 时 ,生成文件的目录名称(要和baseUrl的生产环境路径一致)(默认dist)
  19. outputDir: systemId,
  20. // 用于放置生成的静态资源 (js、css、img、fonts) 的;(项目打包之后,静态资源会放在这个文件夹下)
  21. assetsDir: 'static',
  22. // 是否开启eslint保存检测,有效值:ture | false | 'error'
  23. lintOnSave: true, // process.env.NODE_ENV === 'development',
  24. // 如果你不需要生产环境的 source map,可以将其设置为 false 以加速生产环境构建。
  25. productionSourceMap: false,
  26. parallel:false,
  27. // webpack-dev-server 相关配置
  28. devServer: {
  29. port: port,
  30. open: true,
  31. },
  32. css: {
  33. loaderOptions: {
  34. sass: {
  35. sassOptions: { outputStyle: 'expanded' }
  36. }
  37. }
  38. },
  39. configureWebpack: {
  40. externals: process.env.NODE_ENV === 'production' ? externals : {},
  41. name: name,
  42. resolve: {
  43. alias: {
  44. '@': resolve('src')
  45. },
  46. extensions: ['.js', 'css', 'scss', '.vue']
  47. },
  48. plugins: [
  49. // http://doc.ruoyi.vip/ruoyi-vue/other/faq.html#使用gzip解压缩静态文件
  50. new CompressionPlugin({
  51. test: /\.(js|css|html)?$/i, // 压缩文件格式
  52. filename: '[path].gz[query]', // 压缩后的文件名
  53. algorithm: 'gzip', // 使用gzip压缩
  54. minRatio: 0.8 // 压缩率小于1才会压缩
  55. })
  56. ]
  57. },
  58. chainWebpack(config) {
  59. config.plugins.delete('preload'); // TODO: need test
  60. config.plugins.delete('prefetch'); // TODO: need test
  61. // config.externals({ './cptable': 'var cptable' });
  62. config.when(process.env.NODE_ENV !== 'development', (config) => {
  63. config
  64. .plugin('ScriptExtHtmlWebpackPlugin')
  65. .after('html')
  66. .use('script-ext-html-webpack-plugin', [
  67. {
  68. // `runtime` must same as runtimeChunk name. default is `runtime`
  69. inline: /runtime\..*\.js$/
  70. }
  71. ])
  72. .end();
  73. config.optimization.splitChunks({
  74. chunks: 'all',
  75. cacheGroups: {
  76. libs: {
  77. name: 'chunk-libs',
  78. test: /[\\/]node_modules[\\/]/,
  79. priority: 10,
  80. chunks: 'initial' // only package third parties that are initially dependent
  81. },
  82. elementUI: {
  83. name: 'chunk-elementUI', // split elementUI into a single package
  84. priority: 20, // the weight needs to be larger than libs and app or it will be packaged into libs or app
  85. test: /[\\/]node_modules[\\/]_?element-ui(.*)/ // in order to adapt to cnpm
  86. },
  87. commons: {
  88. name: 'chunk-commons',
  89. test: resolve('src/components'), // can customize your rules
  90. minChunks: 3, // minimum common number
  91. priority: 5,
  92. reuseExistingChunk: true
  93. }
  94. }
  95. });
  96. config.optimization.runtimeChunk('single'),
  97. {
  98. from: path.resolve(__dirname, './public/robots.txt'), // 防爬虫文件
  99. to: './' // 到根目录下
  100. };
  101. });
  102. config.plugin('html').tap((args) => {
  103. return args;
  104. });
  105. }
  106. };