// vue-cli-plugin-vuetify/util/helpers.js
// Inject Vuetify styles at the end of user supplied
data.push(`@import '~vuetify/src/styles/styles.sass${end}`)
If I'm not wrong, the purpose of '@/sass/variables.scss' is to overwrite default variables. But why it is @import before?
Here is a confusing snippet of the
vue inspect
result:And your source code tells that
If I'm not wrong, the purpose of
'@/sass/variables.scss'
is to overwrite default variables. But why it is@import
before?