Too Many Deprecation Warnings
Hello, I'm a junior software developers at a certain company, and they had this Nuxt2 projects.
We kinda want to migrate it to Nuxt3, but there are so many things that needs to be changed(?), so we decide to try Nuxt Bridge instead.
And to be honest, it works perfectly fine, except, when i first run npm run dev, it showed so many deprecation warnings related to vuetify, like the image.
After waiting for almost 2 hours, the application runs perfectly fine.
Is there any way to run it and ignore the deprecation warnings?? Or is there any way to solve the problem instead??
Here is the package.json
9 Replies
notes:
i tried to do
npm run nuxt2 --no-deprecation
npm run nuxt2 --no-warnings
both didnt work
the deprecation warnigns are because of SASS syntax used in vuetify
and there is no way to turn them off - https://github.com/sass/libsass/issues/2822#issuecomment-482914373
GitHub
feature request: : Add a flag to turn off DEPRECATION WARNS ยท Issue...
Since version 4.9 of node-sass the current warning is being shown in a lot of projects. (you may see an open issue asking for a way to silence the warning here) DEPRECATION WARNING: Passing a strin...
you could downgrade the sass version though
is there any recommended version that can be used?
maybe - it is best to check the issue ๐
but of course it'd be better to fix the issues ๐
as of now my team prioritize the application to run first, so need to find quick fix for a while
๐ญ
it should run even with all the warnings
as they are just that
warnings
true, but it takes time before the app runs
like, 1 1/2 hour
just to see those warnings
in the end i downgrade my sass version to 1.32.13, thankyou for your advice!