astro/examples/with-nanostores/astro.config.mjs
2023-09-16 09:12:23 +01:00

8 lines
248 B
JavaScript

import preact from '@astrojs/preact';
import { defineConfig } from 'astro/config';
// https://astro.build/config
export default defineConfig({
// Enable many frameworks to support all different kinds of components.
integrations: [preact()],
});