summaryrefslogtreecommitdiff
path: root/examples/framework-lit/astro.config.mjs
blob: 99733e933767ea81386299099f4f3a4ca33fc610 (plain) (blame)
1
2
3
4
5
6
7
8
import { defineConfig } from 'astro/config';
import lit from '@astrojs/lit';

// https://astro.build/config
export default defineConfig({
	// Enable Lit to support LitHTML components and templates.
	integrations: [lit()],
});