astro.config.mjs 524 B

123456789101112131415161718
  1. import { defineConfig } from 'astro/config';
  2. import preact from '@astrojs/preact';
  3. import react from '@astrojs/react';
  4. import svelte from '@astrojs/svelte';
  5. import vue from '@astrojs/vue';
  6. import solid from '@astrojs/solid-js';
  7. // https://astro.build/config
  8. export default defineConfig({
  9. // Enable many frameworks to support all different kinds of components.
  10. integrations: [
  11. preact({ include: ['**/preact/*'] }),
  12. solid({ include: ['**/solid/*'] }),
  13. react({ include: ['**/react/*'] }),
  14. svelte(),
  15. vue(),
  16. ],
  17. });