diff options
author | 2024-03-29 12:04:27 -0400 | |
---|---|---|
committer | 2024-03-29 16:04:27 +0000 | |
commit | b3028caecf1a96310e2ee7a65075a81c231d87be (patch) | |
tree | 053af748a8f1ae1d47abd8953c9af5f6d18c31e6 /packages/integrations/vue | |
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
Diffstat (limited to 'packages/integrations/vue')
-rw-r--r-- | packages/integrations/vue/src/index.ts | 1 |
1 files changed, 0 insertions, 1 deletions
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'], }, }; |