You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 8, 2025. It is now read-only.
This is official recommendation for passing options to pre-processor loaders, instead of using chainWebpack.
However, Vuetify cli plugin is using chainWebpack and overwrites the user defined configuration. I placed logs for opt.prependData before and after line 56 in util/helpers and here's what I get:
BEFORE @import "~@/styles/_mixins.scss";
AFTER @import '@/styles/variables.scss';
@import '~vuetify/src/styles/styles.sass';
Vuetify plugin should concatenate it's imports to the existing ones, or not use chainWebpack but the recommended way of defining these options.