Skip to content

Commit

Permalink
Suppress warnings output in the console when building CSS
Browse files Browse the repository at this point in the history
Makes the last line in the build output to contain "sass compiled successfully in ..." if there are no errors during build.
  • Loading branch information
podliashanyk committed Nov 8, 2024
1 parent 3a04c93 commit adc801c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,7 @@ module.exports = [
},
],
},
// TODO: fix warnings instead of ignoring them
ignoreWarnings: [/./], // Suppress all warnings in the console
},
];

0 comments on commit adc801c

Please sign in to comment.