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

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

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 625 by rakinar2, Mon Jul 29 17:59:26 2024 UTC revision 626 by rakinar2, Sat Sep 7 09:38:45 2024 UTC
# Line 1  Line 1 
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 = {
# Line 5  const config: Config = { Line 6  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: {
# Line 15  const config: Config = { Line 17  const config: Config = {
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;

Legend:
Removed from v.625  
changed lines
  Added in v.626

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26