This repository has been archived on 2025-03-23. You can view files and clone it, but cannot push or open issues or pull requests.
website/astro.config.mjs

8 lines
181 B
JavaScript
Raw Normal View History

2024-06-19 19:59:36 +02:00
import { defineConfig } from 'astro/config';
2024-06-19 20:21:43 +02:00
import tailwind from "@astrojs/tailwind";
2024-06-19 19:59:36 +02:00
// https://astro.build/config
2024-06-19 20:21:43 +02:00
export default defineConfig({
integrations: [tailwind()]
});