Upload tailwind.config.js with huggingface_hub
Browse files- tailwind.config.js +7 -0
tailwind.config.js
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
module.exports = {
|
| 2 |
+
content: ["./src/**/*.{html,js}"],
|
| 3 |
+
theme: {
|
| 4 |
+
extend: {},
|
| 5 |
+
},
|
| 6 |
+
plugins: [],
|
| 7 |
+
}
|