Skip to content

Commit 92bff56

Browse files
committed
Ignore React transitive deps warns in webpack config
1 parent 3dfccb9 commit 92bff56

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

config/webpack.config.common.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,8 @@ module.exports = (env) => {
3232
mode: isProd ? "production" : "development",
3333

3434
ignoreWarnings: [
35-
{ message: /node\_modules\/bootstrap\/scss\/vendor\/\_rfs\.scss/ }, // Suppress a warning which cannot be fixed without updating bootstrap
36-
{ message: /text-emphasis-variant()/ },
37-
{ message: /bg-variant()/ },
35+
{ message: /mixed-decls/ },
36+
{ message: /repetitive deprecation warnings/ },
3837
],
3938

4039
devServer: {

0 commit comments

Comments
 (0)