chore(nx/client): supress bootstrap warnings

This commit is contained in:
Elian Doran 2025-04-23 12:10:47 +03:00
parent 44b778fde6
commit 43a44bf44c
No known key found for this signature in database
2 changed files with 6 additions and 1 deletions

View File

@ -1,2 +1,2 @@
/* Import all of Bootstrap's CSS */
@import "bootstrap/scss/bootstrap";
@use "bootstrap/scss/bootstrap";

View File

@ -48,6 +48,11 @@ module.exports = {
"./src/libraries",
],
styles: [],
stylePreprocessorOptions: {
sassOptions: {
quietDeps: true
}
},
outputHashing: process.env['NODE_ENV'] === 'production' ? 'all' : 'none',
optimization: process.env['NODE_ENV'] === 'production',
})