In my development setup, I have a global CSS file that houses all of the generic CSS styles.
My goal is to extend the classes from this global CSS file in any of my SCSS files. However, when I attempt to do so, I encounter an error stating that the .xyz class does not exist, leading to build failures. I've tried importing the file without success.
While adding !options next to the class can sometimes resolve the issue, I am curious if there is a more optimal solution available.
For those working with Vue using VueCli3, like myself, I utilize <style lang="scss">
for writing SCSS and aim to leverage the extend feature here. Despite referencing the Vue documentation and attempting to pass options through prependData for variable inclusion, importing the global CSS into a SCSS file and then referencing it in the prependData continues to result in Vue build failures.