File size: 357 Bytes
292a7b6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
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;
|