I am upgrading Vuetify in my Vue CLI 3 project from version 1.5 to 2. I have followed these instructions, doing a full install. Since the upgrade, running \'npm run serve\'
Actually you are using sass-loader 8+ and it has an option a little bit different. Try using prependData instead of data. Check this github issue
prependData
data
module.exports = { css: { loaderOptions: { sass: { prependData: `@import "~@/sass/main.scss"` } } } }