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

// https://astro.build/config
export default defineConfig({
	// Enable the lit renderer to support LitHTML components and templates.
	renderers: ['@astrojs/renderer-lit'],
});