Skip to content

Commit

Permalink
build: disable sass deprecated warning (#778)
Browse files Browse the repository at this point in the history
  • Loading branch information
trim21 committed Aug 10, 2024
1 parent 676bb30 commit ad355c5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions client/config/webpack.config.dev.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ module.exports = {
loader: 'sass-loader',
options: {
sourceMap: true,
sassOptions: {
silenceDeprecations: ['mixed-decls'],
},
},
},
],
Expand Down
3 changes: 3 additions & 0 deletions client/config/webpack.config.prod.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,9 @@ module.exports = {
loader: 'sass-loader',
options: {
sourceMap: true,
sassOptions: {
silenceDeprecations: ['mixed-decls'],
},
},
},
],
Expand Down

0 comments on commit ad355c5

Please sign in to comment.