mirror of
https://github.com/withastro/astro.git
synced 2025-01-13 22:11:20 -05:00
36 lines
763 B
TypeScript
36 lines
763 B
TypeScript
|
import type { AstroIntegration, AstroRenderer } from 'astro';
|
||
|
import vue from '@vitejs/plugin-vue';
|
||
|
|
||
|
function getRenderer(): AstroRenderer {
|
||
|
return {
|
||
|
name: '@astrojs/vue',
|
||
|
clientEntrypoint: '@astrojs/vue/client.js',
|
||
|
serverEntrypoint: '@astrojs/vue/server.js',
|
||
|
};
|
||
|
}
|
||
|
|
||
|
function getViteConfiguration() {
|
||
|
return {
|
||
|
optimizeDeps: {
|
||
|
include: ['@astrojs/vue/client.js', 'vue'],
|
||
|
exclude: ['@astrojs/vue/server.js'],
|
||
|
},
|
||
|
plugins: [vue()],
|
||
|
ssr: {
|
||
|
external: ['@vue/server-renderer'],
|
||
|
},
|
||
|
};
|
||
|
}
|
||
|
|
||
|
export default function (): AstroIntegration {
|
||
|
return {
|
||
|
name: '@astrojs/vue',
|
||
|
hooks: {
|
||
|
'astro:config:setup': ({ addRenderer, updateConfig }) => {
|
||
|
addRenderer(getRenderer());
|
||
|
updateConfig({ vite: getViteConfiguration() });
|
||
|
},
|
||
|
},
|
||
|
};
|
||
|
}
|