1 |
rakinar2 |
626 |
import { nextui } from "@nextui-org/react"; |
2 |
rakinar2 |
575 |
import type { Config } from "tailwindcss"; |
3 |
|
|
|
4 |
|
|
const config: Config = { |
5 |
|
|
content: [ |
6 |
|
|
"./pages/**/*.{js,ts,jsx,tsx,mdx}", |
7 |
|
|
"./components/**/*.{js,ts,jsx,tsx,mdx}", |
8 |
|
|
"./app/**/*.{js,ts,jsx,tsx,mdx}", |
9 |
rakinar2 |
626 |
"./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}", |
10 |
rakinar2 |
575 |
], |
11 |
|
|
theme: { |
12 |
|
|
extend: { |
13 |
|
|
backgroundImage: { |
14 |
|
|
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))", |
15 |
|
|
"gradient-conic": |
16 |
|
|
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))", |
17 |
|
|
}, |
18 |
|
|
}, |
19 |
|
|
}, |
20 |
rakinar2 |
626 |
plugins: [require("@tailwindcss/typography"), nextui()], |
21 |
|
|
darkMode: "class", |
22 |
rakinar2 |
575 |
}; |
23 |
|
|
export default config; |