blob: 7c7ad346f1ae72cd43295eba9792851e2d0ee1f2 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
// @ts-check
import { defineConfig } from 'astro/config';
import tailwind from '@astrojs/tailwind';
// https://astro.build/config
export default defineConfig({
integrations: [tailwind()],
});
|