Skip to content

Commit 0f8f544

Browse files
fix: silence sass compiler warnings (#425)
1 parent 4f62b40 commit 0f8f544

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

config/webpack.dev-stage.config.js

+2
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,8 @@ module.exports = merge(commonConfig, {
100100
path.join(process.cwd(), 'node_modules'),
101101
path.join(process.cwd(), 'src'),
102102
],
103+
// silences compiler warnings regarding deprecation warnings
104+
quietDeps: true,
103105
},
104106
},
105107
},

config/webpack.dev.config.js

+2
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,8 @@ module.exports = merge(commonConfig, {
101101
path.join(process.cwd(), 'node_modules'),
102102
path.join(process.cwd(), 'src'),
103103
],
104+
// silences compiler warnings regarding deprecation warnings
105+
quietDeps: true,
104106
},
105107
},
106108
},

config/webpack.prod.config.js

+2
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,8 @@ module.exports = merge(commonConfig, {
131131
path.join(process.cwd(), 'node_modules'),
132132
path.join(process.cwd(), 'src'),
133133
],
134+
// silences compiler warnings regarding deprecation warnings
135+
quietDeps: true,
134136
},
135137
},
136138
},

0 commit comments

Comments
 (0)