1π
β
maybe
1γ
// component
<style lang="scss">
@import "../../../assets/variable.scss";
</style
2γ
// main.ts
import './assets/variable.scss'
3γ
// vite.config.ts
preprocessorOptions: {
scss: {
additionalData: '@use "@/assets/variable.scss"as *;'
}
}
Use any one of them
π€ηθΆ
ε
Source:stackexchange.com