diff --git a/.changeset/gold-lies-behave.md b/.changeset/gold-lies-behave.md new file mode 100644 index 000000000000..bd2bf1c491c8 --- /dev/null +++ b/.changeset/gold-lies-behave.md @@ -0,0 +1,5 @@ +--- +"@astrojs/vue": patch +--- + +Remove the unnecessary and deprecated @vue/server-renderer package from the ssr.external vite config diff --git a/packages/integrations/vue/src/index.ts b/packages/integrations/vue/src/index.ts index 62ca0946c707..6f451c42451d 100644 --- a/packages/integrations/vue/src/index.ts +++ b/packages/integrations/vue/src/index.ts @@ -116,7 +116,6 @@ async function getViteConfiguration(options?: Options): Promise { }, plugins: [vue(vueOptions), virtualAppEntrypoint(vueOptions)], ssr: { - external: ['@vue/server-renderer'], noExternal: ['vuetify', 'vueperslides', 'primevue'], }, };