I would like to use Bootstrap CSS for our project. My thought is to use a Global SASS file for all the Bootstrap SASS particles we would likely use on every page. (e.g. - grid, buttons, typography, images, containers, etc..)
Then, when we use a card component, we would only include the Bootstrap's card SASS partial in that .astro component file.
The goal is to only include the CSS/SASS we need for each page. Instead of including all of Bootstrap's CSS on every page.
Is there any documentation, or has anyone successfully done something like that with Astro & SASS?