0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-03-31 23:31:30 -05:00

Remove the ssr external for vue (#10601)

* remove the ssr external for vue

* Remove the external line vs comment it out

* add a changeset
This commit is contained in:
Tyler van der Hoeven 2024-03-29 12:04:27 -04:00 committed by GitHub
parent a16a829f4e
commit b3028caecf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 1 deletions

View file

@ -0,0 +1,5 @@
---
"@astrojs/vue": patch
---
Remove the unnecessary and deprecated @vue/server-renderer package from the ssr.external vite config

View file

@ -116,7 +116,6 @@ async function getViteConfiguration(options?: Options): Promise<UserConfig> {
},
plugins: [vue(vueOptions), virtualAppEntrypoint(vueOptions)],
ssr: {
external: ['@vue/server-renderer'],
noExternal: ['vuetify', 'vueperslides', 'primevue'],
},
};