Should I import the minified .css file when trying to override SASS variables ?
I followed this https://vuetifyjs.com/en/getting-started/installation/#webpack-install
// src/plugins/vuetify.js
import Vue from 'vue'
import Vuetify from 'vuetify'
import 'vuetify/dist/vuetify.min.css'
Vue.use(Vuetify)
const opts = {}
export default new Vuetify(opts)
And now I'm trying to override $body-font-family with no success, I've tried creating a variables.scss file and also tried overriding it in my main .scss file but I wonder if I should be importing the minified version like that or if I need to do something different ?