vue.config.js 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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. // 去掉console.log
  45. configureWebpack: config => {
  46. if (IS_PROD) {
  47. const plugins = [];
  48. plugins.push(
  49. new UglifyJsPlugin({
  50. uglifyOptions: {
  51. compress: {
  52. drop_console: true,
  53. drop_debugger: false,
  54. pure_funcs: ["console.log"] //移除console
  55. }
  56. },
  57. sourceMap: false,
  58. parallel: true
  59. })
  60. );
  61. config.plugins = [...config.plugins, ...plugins];
  62. }
  63. },
  64. pages: {
  65. index: {
  66. // page 的入口
  67. entry: 'src/main.js',
  68. // 模板来源
  69. template: 'public/index.html',
  70. // 在 dist/index.html 的输出
  71. filename: 'index.html',
  72. // 当使用 title 选项时,
  73. // template 中的 title 标签需要是 <title><%= htmlWebpackPlugin.options.title %></title>
  74. title: '国电电力宁夏新能源集中监控系统',
  75. // 在这个页面中包含的块,默认情况下会包含
  76. // 提取出来的通用 chunk 和 vendor chunk。
  77. chunks: ['chunk-vendors', 'chunk-common', 'index']
  78. },
  79. },
  80. devServer: {
  81. open: true, // 是否打开浏览器
  82. }
  83. }