astro.config.mjs 226 B

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