I'm having trouble adding Vuetify 3 to Astro when using the Vue integration. This is what I have so far:
import { defineConfig } from 'astro/config';
import vue from '@astrojs/vue';
import vuetify from 'vite-plugin-vuetify';
// https://astro.build/config
export default defineConfig({
integrations: [vue()],
vite: {
ssr: {
noExternal: ['vuetify'],
},
plugins: [vuetify()],
},
});
I'm getting the 'Vuetify plugin must be loaded after the vue plugin'
error.
Don't know how to move on from here. I'm open to all suggestions.