6386c14d00
* update examples * add initial integrations * update tests * update astro * update ci * get final tests working * update injectelement todo * update ben code review * respond to final code review feedback
8 lines
208 B
JavaScript
8 lines
208 B
JavaScript
import { defineConfig } from 'astro/config';
|
|
import vue from '@astrojs/vue';
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
// Enable Vue to support Vue components.
|
|
integrations: [vue()],
|
|
});
|