aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiguel Ángel Moreno <mail@migalmoreno.com>2022-12-20 00:50:18 +0100
committerMiguel Ángel Moreno <mail@migalmoreno.com>2022-12-20 00:55:18 +0100
commitc012ba5769ef74095d1e572c34bd7ed951360225 (patch)
treede9e473381d7b655c8622337b22ceed726e9eb6d
parentf2f9ab53c28a0fe63dfbbc09780ad4c0e9c40ba0 (diff)
chore: Add tailwind configuration
-rw-r--r--tailwind.config.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/tailwind.config.js b/tailwind.config.js
new file mode 100644
index 0000000..4960687
--- /dev/null
+++ b/tailwind.config.js
@@ -0,0 +1,8 @@
+/** @type {import('tailwindcss').Config} */
+module.exports = {
+ content: ["./src/**/*.{html,js,cljs}"],
+ theme: {
+ extend: {},
+ },
+ plugins: [],
+}