mirror of
https://github.com/reconurge/flowsint.git
synced 2026-03-12 01:44:42 -05:00
19 lines
417 B
JavaScript
19 lines
417 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
'src/**/*.{js,ts,jsx,tsx,mdx}',
|
|
'src/app/**/*.{js,ts,jsx,tsx,mdx}',
|
|
'./src/**/*.{js,ts,jsx,tsx,mdx}',
|
|
"./node_modules/@heroui/theme/dist/**/*.{js,ts,jsx,tsx}"
|
|
],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
sans: ["var(--font-sans)"],
|
|
mono: ["var(--font-mono)"],
|
|
},
|
|
},
|
|
},
|
|
darkMode: "class",
|
|
}
|