aboutsummaryrefslogtreecommitdiff
path: root/astro.config.mjs
blob: a41fbe0aff29d4aebcf75060a3e4555fe00bf116 (plain) (blame)
1
2
3
4
5
6
7
8
9
import { defineConfig } from 'astro/config';
import tailwind from "@astrojs/tailwind";

import preact from "@astrojs/preact";

// https://astro.build/config
export default defineConfig({
  integrations: [tailwind(), preact()]
});