Skip to content
This repository was archived by the owner on Sep 14, 2022. It is now read-only.

Commit 7c086d7

Browse files
committed
feat: ignore dist, remove bundle analyzer
1 parent 7f79595 commit 7c086d7

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
22

3+
/dist
4+
35
# dependencies
46
/node_modules
57
/.pnp

dist/index.html

Lines changed: 0 additions & 1 deletion
This file was deleted.

webpack.prod.config.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
const { merge } = require("lodash");
22
const baseConfig = require("./webpack.base.config");
3-
const BundleAnalyzerPlugin = require("webpack-bundle-analyzer")
4-
.BundleAnalyzerPlugin;
53
const TerserPlugin = require("terser-webpack-plugin");
64

75
module.exports = merge(baseConfig, {
@@ -27,7 +25,6 @@ module.exports = merge(baseConfig, {
2725
},
2826
},
2927
},
30-
plugins: [new BundleAnalyzerPlugin()],
3128
output: {
3229
filename: "[name].[hash].js",
3330
chunkFilename: "[name].[hash].js",

0 commit comments

Comments
 (0)