Skip to content

Commit 633f417

Browse files
committed
chore: disable webpack performance hints
Signed-off-by: Thorsten Hans <[email protected]>
1 parent cb6a784 commit 633f417

File tree

4 files changed

+16
-4
lines changed

4 files changed

+16
-4
lines changed

templates/http-js/content/webpack.config.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,7 @@ module.exports = {
2020
optimization: {
2121
minimize: false
2222
},
23-
};
23+
performance: {
24+
hints: false,
25+
}
26+
};

templates/http-ts/content/webpack.config.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,7 @@ module.exports = {
3232
optimization: {
3333
minimize: false
3434
},
35-
};
35+
performance: {
36+
hints: false,
37+
}
38+
};

templates/redis-js/content/webpack.config.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,7 @@ module.exports = {
2020
optimization: {
2121
minimize: false
2222
},
23-
};
23+
performance: {
24+
hints: false,
25+
}
26+
};

templates/redis-ts/content/webpack.config.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,7 @@ module.exports = {
3232
optimization: {
3333
minimize: false
3434
},
35-
};
35+
performance: {
36+
hints: false,
37+
}
38+
};

0 commit comments

Comments
 (0)