titles/tailwind.config.ts

19 lines
505 B
TypeScript
Raw Permalink Normal View History

2024-05-17 08:44:41 +00:00
import { nextui } from "@nextui-org/theme";
2024-05-16 11:44:35 +00:00
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
2024-05-17 08:44:41 +00:00
"./node_modules/@nextui-org/theme/dist/components/(button|ripple|spinner).js",
"./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}",
2024-05-16 11:44:35 +00:00
],
theme: {
2024-05-17 08:44:41 +00:00
extend: {},
2024-05-16 11:44:35 +00:00
},
2024-05-17 09:02:07 +00:00
darkMode: "class",
2024-05-17 08:44:41 +00:00
plugins: [nextui()],
2024-05-16 11:44:35 +00:00
};
export default config;