Hi,
i have a problem with scss.
I must create a static site for my companies but i must load different scss based on route parameters, each company has your scss.
The problem is thant Astro load all scss.
Code example
---
const { company } = Astro.params;
if(company === "company1") {
import "../styles/company1.scss":
} else {
import "../styles/company2.scss";
}
---
... layout html load
What could be the solution?