diff options
Diffstat (limited to 'examples/framework-lit/astro.config.mjs')
-rw-r--r-- | examples/framework-lit/astro.config.mjs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/examples/framework-lit/astro.config.mjs b/examples/framework-lit/astro.config.mjs index c86c77bf7..99733e933 100644 --- a/examples/framework-lit/astro.config.mjs +++ b/examples/framework-lit/astro.config.mjs @@ -1,7 +1,8 @@ import { defineConfig } from 'astro/config'; +import lit from '@astrojs/lit'; // https://astro.build/config export default defineConfig({ - // Enable the lit renderer to support LitHTML components and templates. - renderers: ['@astrojs/renderer-lit'], + // Enable Lit to support LitHTML components and templates. + integrations: [lit()], }); |