I am currently working with Angular (Jhipster) in my application and I am looking to include multiple .scss files in my global.scss file. To achieve this, I have created a folder called "util" at the same level as the global.scss file and placed these .scss partials inside it. At the beginning of my global.scss file, I attempted the following:
@import "util";
@import "util/*";
@import "util/;
Despite trying various alternatives, I keep encountering the following error message:
Module build failed (from ./node_modules/sass-loader/lib/loader.js):
undefined ^ Can't find stylesheet to import.
However, when I import each file individually, it works fine.
What is the best way to import an entire folder containing .scss files into my global .scss file?