Incognito3 / tailwind.config.mjs
Alex Scott
rebrand space to incognito
46c7a16
raw
history blame contribute delete
285 Bytes
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
extend: {},
},
plugins: [],
variants: {
extend: {
display: ['group-hover'],
},
},
};