Currently, I am working on a web application that utilizes Angular. My aim is to create a unique style using sass based on specific environment variables in my code.
For example: style.scss
import "myVariables.scss"
import "{{ScssClient}}" // variable overload
/// inserting my custom styles here ...///
In one of my TS files:
let ScssClient = "www.downloadfile.com/myscssfile";
I am aware that SASS does not natively support variable interpolation.
Is there a clever workaround or solution for me to achieve this objective?