File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/vuetify-nuxt-module/src/utils Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -52,10 +52,10 @@ export async function configureNuxt (
5252 nuxt . options . css . push ( a . dst )
5353 } else if ( ctx . vuetifyGte ( '4.0.0' ) ) {
5454 nuxt . options . css . push ( await resolvePath ( 'vuetify/styles/core' ) )
55- if ( typeof styles === 'object' && styles ?. utilities !== false ) {
55+ if ( styles === true || ( typeof styles === 'object' && styles ?. utilities !== false ) ) {
5656 nuxt . options . css . push ( await resolvePath ( 'vuetify/styles/utilities' ) )
5757 }
58- if ( typeof styles === 'object' && styles ?. colors !== false ) {
58+ if ( styles === true || ( typeof styles === 'object' && styles ?. colors !== false ) ) {
5959 nuxt . options . css . push ( await resolvePath ( 'vuetify/styles/colors' ) )
6060 }
6161 } else {
You can’t perform that action at this time.
0 commit comments