Ich habe Probleme beim Hinzufügen von Vuetify 3 zu Astro über die Vue-Integration. Das habe ich bisher:
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()], }, });
Ich erhalte 'Vuetify 插件必须在 vue 插件之后加载'
Fehler.
Ich bin mir nicht sicher, wie ich von hier aus weitermachen soll. Ich bin für alle Vorschläge offen.
Astro 集成中的配置 (
@astrojs/vue
在本例中)被附加到您自己的 Astro 配置中,因此vuetify
插件将首先在此处注册。解决方法是定义您自己的 Astro 集成,调用
updateConfig()
添加验证:并在 Vue 集成之后安装它: