I have external SASS file like external.scss and which has below content
@import "core/colors";
This is included into application like adding below in angular.json file
"styles": [
"path/external.scss",
"styles.scss"
],
I try to access some variables present in colors.scss file in my application but it says variable not found. I have to import the colors.scss file again inside my styles.scss file to detect the variable. Is there no way to prevent addition into styles.scss file.