Nuxtjs vuetify throwing lots of `Using / for division is deprecated and will be removed in Dart Sass 2.0.0.`
Quick fix Change your sass version to use the tilde ~ and it should work. This is because it will prohibit updated minor versions from being used, and allow only patches. Example package.json line: “sass”: “~1.32.6” See https://nodesource.com/blog/semver-tilde-and-caret/ Future-compatible fix For those of you who want to refactor your use of /, you need to … Read more