1 |
|
import { nextui } from "@nextui-org/react"; |
2 |
import type { Config } from "tailwindcss"; |
import type { Config } from "tailwindcss"; |
3 |
|
|
4 |
const config: Config = { |
const config: Config = { |
6 |
"./pages/**/*.{js,ts,jsx,tsx,mdx}", |
"./pages/**/*.{js,ts,jsx,tsx,mdx}", |
7 |
"./components/**/*.{js,ts,jsx,tsx,mdx}", |
"./components/**/*.{js,ts,jsx,tsx,mdx}", |
8 |
"./app/**/*.{js,ts,jsx,tsx,mdx}", |
"./app/**/*.{js,ts,jsx,tsx,mdx}", |
9 |
|
"./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}", |
10 |
], |
], |
11 |
theme: { |
theme: { |
12 |
extend: { |
extend: { |
17 |
}, |
}, |
18 |
}, |
}, |
19 |
}, |
}, |
20 |
plugins: [require("@tailwindcss/typography")], |
plugins: [require("@tailwindcss/typography"), nextui()], |
21 |
darkMode: "class" |
darkMode: "class", |
22 |
}; |
}; |
23 |
export default config; |
export default config; |