, I am getting expected SASS deprecation warnings like:
Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0.Recommendation: math.div($grid-gutter, 12) or calc($grid-gutter / 12)More info and automated migrator: https://sass-lang.com/d/slash-div ╷63 │ 'xs': $grid-gutter / 12, │ ^^^^^^^^^^^^^^^^^ ╵ node_modules/vuetify/src/styles/settings/_variables.scss 63:11 @import node_modules/vuetify/src/styles/settings/_index.sass 1:9 @import node_modules/vuetify/src/styles/styles.sass 2:9 @import node_modules/vuetify/src/components/VGrid/VGrid.sass 1:9 root stylesheet
Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0.Recommendation: math.div($grid-gutter, 12) or calc($grid-gutter / 12)More info and automated migrator: https://sass-lang.com/d/slash-div ╷63 │ 'xs': $grid-gutter / 12, │ ^^^^^^^^^^^^^^^^^ ╵ node_modules/vuetify/src/styles/settings/_variables.scss 63:11 @import node_modules/vuetify/src/styles/settings/_index.sass 1:9 @import node_modules/vuetify/src/styles/styles.sass 2:9 @import node_modules/vuetify/src/components/VGrid/VGrid.sass 1:9 root stylesheet
What is the correct way to silence those at least temporarily while... hopefully... migrating to new Nuxt, Vue, TypeScript, and then... Vuetify? I would appreciate a clarification/suggestion whether it's even possible without upgrading to Vuetify 3 or downgrading SASS, where current versions:
$ yarn list --pattern 'sass';yarn list v1.22.19├─ @nuxtjs/vuetify@2.0.0-beta.2│ └─ sass-loader@8.0.2├─ @types/node-sass@4.11.7├─ postcss-sass@0.4.4├─ sass-loader@10.5.2├─ sass@1.75.0└─ stylelint-config-rational-order@0.1.2 └─ postcss-sass@0.3.5Done in 0.66s.
$ yarn list --pattern 'sass';yarn list v1.22.19├─ @nuxtjs/vuetify@2.0.0-beta.2│ └─ sass-loader@8.0.2├─ @types/node-sass@4.11.7├─ postcss-sass@0.4.4├─ sass-loader@10.5.2├─ sass@1.75.0└─ stylelint-config-rational-order@0.1.2 └─ postcss-sass@0.3.5Done in 0.66s.