mirror of
https://github.com/Motschen/midnightdust-eu.git
synced 2025-12-13 01:15:10 +01:00
10 lines
220 B
JavaScript
10 lines
220 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
darkMode: ['class', '.darkmode'],
|
|
}
|