I attempted the example provided below, but unfortunately, it did not function as expected. The reason behind my endeavor is that adding numerous modifiers (--tuned) to achieve the desired outcome seemed impractical. Therefore, I decided to try and link the css file based on a specific condition. However, I encountered difficulties in making this approach work. Is there a reason why this method failed? Furthermore, does anyone have suggestions for a more efficient alternative to using multiple modifiers?
<style v-if="!isTuningActive" lang="scss" src="./normal-version.scss"></style>
<style
v-else
lang="scss"
src="./tuned-version.scss"
></style>