Forráskód Böngészése

取消打包分析插件 取消打包配置

zhaomiao 3 éve
szülő
commit
587cd6fa5d
2 módosított fájl, 1 hozzáadás és 13 törlés
  1. 1 1
      src/router/index.js
  2. 0 12
      vue.config.js

+ 1 - 1
src/router/index.js

@@ -69,7 +69,7 @@ const routes = [
 
 const router = new VueRouter({
   mode: 'history',
-  base: '/sis/', // 部署单页面 404 history  带井号解决(去掉history 放web-inf)
+  //base: '/sis/', // 部署单页面 404 history  带井号解决(去掉history 放web-inf)
   routes,
 })
 

+ 0 - 12
vue.config.js

@@ -4,8 +4,6 @@ const IS_PROD = ['production', 'prod'].includes(process.env.NODE_ENV);
 const resolve = (dir) => path.join(__dirname, dir);
 const UglifyJsPlugin = require("uglifyjs-webpack-plugin"); // 去掉 console.log
 //打包分析
-const BundleAnalyzerPlugin = require("webpack-bundle-analyzer")
-  .BundleAnalyzerPlugin;
 module.exports = {
   publicPath: "./", // 默认'/',部署应用包时的基本 URL
   indexPath: 'index.html', // 相对于打包路径index.html的路径
@@ -87,15 +85,5 @@ module.exports = {
     open: true, // 是否打开浏览器
   },
   //打包分析
-  chainWebpack: config => {
-    // 打包分析
-    if (IS_PROD) {
-      config.plugin("webpack-report").use(BundleAnalyzerPlugin, [
-        {
-          analyzerMode: "static"
-        }
-      ]);
-    }
-  }
 
 }