-
Notifications
You must be signed in to change notification settings - Fork 103
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
"/" as divide symbol deprecated in latest sass release - build errors #446
Comments
I get the same error with "@nuxtjs/vuetify": "1.11.2" and "nuxt": "2.15.6" |
If you use Yarn you can put
in your package.json and it should work. |
Same Error with "@nuxtjs/vuetify": "1.11.3" and "nuxt": "2.15.6" |
i got same error here how to fix it? when i use |
The temporary solution proposed by @Heniker works perfectly, thank you. package.json
|
For regular NPM users there is another solution available (as a temporary fix).
|
@erikeuserr In order this to work for me with Nuxt + Vuetify + npm I had to use
instead of what you suggest
But it works. Thank you! |
This doesn't seem to work in my monorepo project, unfortunately. |
I have the same error. is there a solution to this problem? |
this my step to handle this error for now
inside the scripts section
below your scripts section
if you dont understand my step this my
after that run command |
Same problem with monorepo |
Temporary solution for NPM users:
No need to change anything but if you still face issue then |
This worked for me. |
I'd tried to force Vuetify version
No luck. It outputs multiple
But the actual file contains nothing before
I assume that maybe there is some loader prepending something before the file content. Using this solves the error but keeps the division warnings
|
this worked for me:
|
Module version
1.11.3
Describe the bug
After installing latest version of this module, it downloaded as dependency latest version of SASS which is 1.33.0.
In this sass version, they introduced braking change and deprecated
/
as divider symbol in favour ofmath.div()
.Now during build, it throws errors like:
To Reproduce
Just install latest version of this module.
Expected behavior
Long term solution would be to replace
/
withmath.div()
in the whore repo.Quick fix could be to change package.json and lock sass dependency to version 1.32.12
The text was updated successfully, but these errors were encountered: