Hello,
I’m using latest Sage (10.7.0) and I’ve been trying to pass some sass options to bud-sass (specifically quietDeps: true
but I’ve not had any success figuring it out.
I’ve added to bud.config.js:
app.tap(bud => {
bud.build.items.sass.setOptions({
sassOptions: {
quietDeps: true,
}
});
});
but running yarn build
produces other errors, complaining about source maps (which I have not configured whatsoever)
Without the snippet above, build is successful, alas with a bunch of warnings.
Am I missing something obvious, or is there another way to do this?