mirror of
https://github.com/luxfi/node.git
synced 2026-07-27 03:39:39 +00:00
17 lines
334 B
TypeScript
17 lines
334 B
TypeScript
import type { Config } from "tailwindcss"
|
|
|
|
const config: Config = {
|
|
content: [
|
|
"./app/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./components/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./content/**/*.mdx",
|
|
"./node_modules/fumadocs-ui/dist/**/*.js",
|
|
],
|
|
darkMode: "class",
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
}
|
|
|
|
export default config |