I would like to define 'path/var1.scss' or 'path/var2.scss' filename in my main.scss like a variable. After I would like to use(import) this variable in my main.scss .
//in the main.scss file
$myVariable = "path/var1.scss";
@import $myVariable;
Is it possible? How can achieve it? Many thanks.