Website/tailwind.config.cjs

12 Zeilen
240 B
JavaScript

2023-09-24 16:33:14 +02:00
const defaultTheme = require("tailwindcss/defaultTheme");
2023-09-20 20:52:40 +02:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
2023-09-24 16:33:14 +02:00
extend: {
},
2023-09-20 20:52:40 +02:00
},
plugins: [],
}