mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-04-25 08:26:22 +02:00
17 lines
401 B
TypeScript
17 lines
401 B
TypeScript
|
|
import { nextui } from "@nextui-org/react";
|
||
|
|
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}",
|
||
|
|
"./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}",
|
||
|
|
],
|
||
|
|
theme: {
|
||
|
|
extend: {},
|
||
|
|
},
|
||
|
|
plugins: [nextui()],
|
||
|
|
};
|
||
|
|
export default config;
|