vue.config.js 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. // vue.config.js
  2. const path = require('path');
  3. const IS_PROD = ['production', 'prod'].includes(process.env.NODE_ENV);
  4. const resolve = (dir) => path.join(__dirname, dir);
  5. const UglifyJsPlugin = require("uglifyjs-webpack-plugin"); // 去掉 console.log
  6. module.exports = {
  7. publicPath: IS_PROD ? process.env.VUE_APP_PUBLIC_PATH : "./", // 默认'/',部署应用包时的基本 URL
  8. indexPath: 'index.html', // 相对于打包路径index.html的路径
  9. outputDir: process.env.outputDir || 'dist', // 'dist', 生产环境构建文件的目录
  10. assetsDir: 'static', // 相对于outputDir的静态资源(js、css、img、fonts)目录
  11. lintOnSave: false, // 是否在开发环境下通过 eslint-loader 在每次保存时 lint 代码
  12. runtimeCompiler: true, // 是否使用包含运行时编译器的 Vue 构建版本
  13. productionSourceMap: !IS_PROD, // 生产环境的 source map
  14. parallel: require("os").cpus().length > 1, // 是否为 Babel 或 TypeScript 使用 thread-loader。该选项在系统的 CPU 有多于一个内核时自动启用,仅作用于生产构建。
  15. pwa: {}, // 向 PWA 插件传递选项。
  16. chainWebpack: config => {
  17. config.resolve.symlinks(true); // 修复热更新失效
  18. // 添加别名
  19. config.resolve.alias
  20. .set('@', resolve('src'))
  21. .set('@api', resolve('src/api'))
  22. .set('@tools', resolve('src/tools'))
  23. .set('@assets', resolve('src/assets'))
  24. .set('@components', resolve('src/components'))
  25. .set('@views', resolve('src/views'))
  26. .set('@router', resolve('src/router'))
  27. .set('@store', resolve('src/store'))
  28. .set('@jsonData', resolve('src/jsonData'));
  29. // 压缩图片
  30. if (IS_PROD) {
  31. config.module
  32. .rule("images")
  33. .use("image-webpack-loader")
  34. .loader("image-webpack-loader")
  35. .options({
  36. mozjpeg: { progressive: true, quality: 65 },
  37. optipng: { enabled: false },
  38. pngquant: { quality: [0.65, 0.9], speed: 4 },
  39. gifsicle: { interlaced: false }
  40. // webp: { quality: 75 }
  41. });
  42. }
  43. },
  44. css: {
  45. loaderOptions: {
  46. sass: {
  47. prependData: `@import "./src/assets/css/default";`,
  48. },
  49. },
  50. },
  51. // 去掉console.log
  52. configureWebpack: config => {
  53. if (IS_PROD) {
  54. const plugins = [];
  55. plugins.push(
  56. new UglifyJsPlugin({
  57. uglifyOptions: {
  58. compress: {
  59. drop_console: true,
  60. drop_debugger: false,
  61. pure_funcs: ["console.log"] //移除console
  62. }
  63. },
  64. sourceMap: false,
  65. parallel: true
  66. })
  67. );
  68. config.plugins = [...config.plugins, ...plugins];
  69. }
  70. },
  71. pages: {
  72. index: {
  73. // page 的入口
  74. entry: 'src/main.js',
  75. // 模板来源
  76. template: 'public/index.html',
  77. // 在 dist/index.html 的输出
  78. filename: 'index.html',
  79. // 当使用 title 选项时,
  80. // template 中的 title 标签需要是 <title><%= htmlWebpackPlugin.options.title %></title>
  81. title: '国电电力宁夏新能源集中监控系统',
  82. // 在这个页面中包含的块,默认情况下会包含
  83. // 提取出来的通用 chunk 和 vendor chunk。
  84. chunks: ['chunk-vendors', 'chunk-common', 'index']
  85. },
  86. },
  87. devServer: {
  88. open: true, // 是否打开浏览器
  89. }
  90. }