This commit is contained in:
Andras Bacsai
2024-09-04 10:15:31 +02:00
commit 3af5c5b487
184 changed files with 19269 additions and 0 deletions

7
tailwind.config.mjs Normal file
View File

@@ -0,0 +1,7 @@
import starlightPlugin from '@astrojs/starlight-tailwind';
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
plugins: [starlightPlugin()],
};