We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2226584 commit 067ab88Copy full SHA for 067ab88
packages/vuetify-nuxt-module/src/utils/configure-nuxt.ts
@@ -34,9 +34,9 @@ export async function configureNuxt (
34
filename: 'vuetify.settings.scss',
35
getContents: async () => getTemplate('vuetify/styles', await resolvePath(styles.configFile)),
36
})
37
- nuxt.options.css.unshift(a.dst)
+ nuxt.options.css.push(a.dst)
38
} else {
39
- nuxt.options.css.unshift(await resolvePath('vuetify/styles'))
+ nuxt.options.css.push(await resolvePath('vuetify/styles'))
40
}
41
42
0 commit comments