Currently, I am using Vue3 with Vite and attempting to integrate Bootstrap into my project. While I have managed to implement most of it successfully, I encountered a significant error when trying to override Bootstrap-related variables. Can anyone offer assistance in resolving this issue?
I keep encountering an internal server error displaying: [sass] $n: Invalid index 1 for a list with 0 elements.
The SCSS code snippet that I'm working with:
@import "./scss/_variables.scss";
@import "bootstrap/scss/bootstrap";
@import "./fonts/Lato-font/latofonts";
@import "./scss/custom_styles.scss";
@import "./custom/css/dark.scss";
@import "./custom/css/components/datepicker.scss";
@import "./custom/css/components/timepicker.scss";
@import "./custom/css/components/daterangepicker.scss";
@import "./custom/css/components/bs-filestyle.css";
@import "./component";
Despite multiple attempts, I continue to face the same error in my style.scss file. Any guidance on how to resolve this persistent issue would be greatly appreciated.