You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to override the sass variables.
According to this document, I need to use @import.
But in Vue3, following warning occurs when I build the app. DEPRECATION WARNING: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0.
Using @use create a new problem, saying that .#{$vt-namespace}__container { $vt-namespace seems undefined.
Changed the import variables to the following so that it will be able to find $vt-namespace @use "vue-toastification/src/scss/_variables" as *;
However, for some reasons it's still not working.
Versions
Describe the bug
I'm trying to override the sass variables.
According to this document, I need to use
@import
.But in Vue3, following warning occurs when I build the app.
DEPRECATION WARNING: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0.
Expected behavior
No warnings
Steps to reproduce
Steps:
npm run dev
Your Environment
The text was updated successfully, but these errors were encountered: