wewe-rss / apps /web /tailwind.config.ts
Elkins's picture
Upload 84 files
ca668ce verified
raw
history blame contribute delete
357 Bytes
import type { Config } from 'tailwindcss';
import { nextui } from '@nextui-org/react';
const config: Config = {
content: [
'./index.html',
'./src/**/*.{js,ts,jsx,tsx}',
'../../node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {},
},
darkMode: 'class',
plugins: [nextui()],
};
export default config;