diff options
author | 2022-09-06 15:12:47 +0000 | |
---|---|---|
committer | 2022-09-06 15:12:47 +0000 | |
commit | 91a9cb076482a2f78c072ec46b93069bde521fa8 (patch) | |
tree | af55631f2d813950815182592ca51c086587e706 /packages | |
parent | f08ca005e28cc7d279535680d5b44495877aa7b6 (diff) | |
download | astro-91a9cb076482a2f78c072ec46b93069bde521fa8.tar.gz astro-91a9cb076482a2f78c072ec46b93069bde521fa8.tar.zst astro-91a9cb076482a2f78c072ec46b93069bde521fa8.zip |
[ci] format
Diffstat (limited to 'packages')
-rw-r--r-- | packages/integrations/vue/src/index.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/integrations/vue/src/index.ts b/packages/integrations/vue/src/index.ts index 721f3e0e5..24df127d0 100644 --- a/packages/integrations/vue/src/index.ts +++ b/packages/integrations/vue/src/index.ts @@ -1,7 +1,7 @@ import type { Options } from '@vitejs/plugin-vue'; +import vue from '@vitejs/plugin-vue'; import type { AstroIntegration, AstroRenderer } from 'astro'; import type { UserConfig } from 'vite'; -import vue from '@vitejs/plugin-vue'; function getRenderer(): AstroRenderer { return { @@ -20,7 +20,7 @@ function getViteConfiguration(options?: Options): UserConfig { plugins: [vue(options)], ssr: { external: ['@vue/server-renderer'], - noExternal: ['vueperslides'] + noExternal: ['vueperslides'], }, }; } |