Skip to content

Commit d83bdeb

Browse files
committed
Turn of performance warnings
Webpack tried to warn us for our large assets, which isn't relevant for a browser extension so much.
1 parent 844ebb9 commit d83bdeb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ module.exports = {
66
mode: mode,
77
devtool: mode === "development" ? "source-map" : false,
88
performance: {
9-
maxEntrypointSize: 500000
9+
hints: false
1010
},
1111
entry: {
1212
popup: "./src/popup.ts",

0 commit comments

Comments
 (0)