Skip to content

Commit 1f1a978

Browse files
Añadir archivo de configuración de Tailwind CSS
1 parent c45b587 commit 1f1a978

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

tailwind.config.js

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
/** @type {import('tailwindcss').Config} */
2+
3+
import { nextui } from '@nextui-org/react';
4+
5+
export default {
6+
content: [
7+
'./index.html',
8+
'./src/**/*.{ts,tsx}',
9+
'./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}',
10+
],
11+
theme: {
12+
extend: {},
13+
},
14+
darkMode: 'class',
15+
plugins: [nextui()],
16+
};

0 commit comments

Comments
 (0)