astro.config.mjs 208 B

12345678
  1. import { defineConfig } from 'astro/config';
  2. import vue from '@astrojs/vue';
  3. // https://astro.build/config
  4. export default defineConfig({
  5. // Enable Vue to support Vue components.
  6. integrations: [vue()],
  7. });