diff options
author | 2024-03-29 12:04:27 -0400 | |
---|---|---|
committer | 2024-03-29 16:04:27 +0000 | |
commit | b3028caecf1a96310e2ee7a65075a81c231d87be (patch) | |
tree | 053af748a8f1ae1d47abd8953c9af5f6d18c31e6 | |
parent | a16a829f4e25ad5c9a1b4557ec089fc8ab53320f (diff) | |
download | astro-b3028caecf1a96310e2ee7a65075a81c231d87be.tar.gz astro-b3028caecf1a96310e2ee7a65075a81c231d87be.tar.zst astro-b3028caecf1a96310e2ee7a65075a81c231d87be.zip |
Remove the ssr external for vue (#10601)
* remove the ssr external for vue
* Remove the external line vs comment it out
* add a changeset
-rw-r--r-- | .changeset/gold-lies-behave.md | 5 | ||||
-rw-r--r-- | packages/integrations/vue/src/index.ts | 1 |
2 files changed, 5 insertions, 1 deletions
diff --git a/.changeset/gold-lies-behave.md b/.changeset/gold-lies-behave.md new file mode 100644 index 000000000..bd2bf1c49 --- /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 62ca0946c..6f451c424 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<UserConfig> { }, plugins: [vue(vueOptions), virtualAppEntrypoint(vueOptions)], ssr: { - external: ['@vue/server-renderer'], noExternal: ['vuetify', 'vueperslides', 'primevue'], }, }; |