Are you using Sass as part of your build process? If you’re using Vite or webpack and importing SCSS files in lots of different components, be aware you should probably switch to sass-embedded
instead of sass
, as it can, as James Stuckey Weber wrote, “allows you to reuse a single instance of Sass for multiple compilations” instead of Sass spinning up and down for every single import.