Spaces:
Sleeping
Sleeping
Upload tailwind.config.js with huggingface_hub
Browse files- tailwind.config.js +10 -0
tailwind.config.js
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
module.exports = {
|
| 2 |
+
content: [
|
| 3 |
+
"./pages/**/*.{js,ts,jsx,tsx}",
|
| 4 |
+
"./components/**/*.{js,ts,jsx,tsx}",
|
| 5 |
+
],
|
| 6 |
+
theme: {
|
| 7 |
+
extend: {},
|
| 8 |
+
},
|
| 9 |
+
plugins: [],
|
| 10 |
+
}
|