/[sudobot]/trunk/docs/tailwind.config.ts
ViewVC logotype

Annotation of /trunk/docs/tailwind.config.ts

Parent Directory Parent Directory | Revision Log Revision Log


Revision 626 - (hide annotations)
Sat Sep 7 09:38:45 2024 UTC (6 months, 3 weeks ago) by rakinar2
File MIME type: application/typescript
File size: 747 byte(s)
chore: sync with git

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;

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26