| 12345678910111213141516171819202122 |
- import type { Config } from "tailwindcss";
- import { heroui } from "@heroui/react";
- const config: Config = {
- content: [
- "./pages/**/*.{js,ts,jsx,tsx,mdx}",
- "./components/**/*.{js,ts,jsx,tsx,mdx}",
- "./app/**/*.{js,ts,jsx,tsx,mdx}",
- "./node_modules/@heroui/theme/dist/**/*.{js,ts,jsx,tsx}",
- ],
- theme: {
- extend: {
- colors: {
- background: "var(--background)",
- foreground: "var(--foreground)",
- },
- },
- },
- darkMode: "class",
- plugins: [heroui()],
- };
- export default config;
|