How to pre-load SASS custom utilities (variables and mixins) with webpack
问题 I am loading my utilities and assets in base.scss like so @import "_variables"; @import "_mixins"; ... I have tons of modules in my application and we are doing so many changes in these modules. so importing the base.scss in the header of each of the scss files is causing so much trouble and seems very redundant. I tried using sass's includePaths but it didn't help as it only resolves the @import declarations. Is there any way that I can auto import my utilities without having to @import it