aboutsummaryrefslogtreecommitdiffstats
path: root/web/tailwind.config.js
diff options
context:
space:
mode:
authorLeonardo Bishop <me@leonardobishop.com>2025-08-14 18:07:12 +0100
committerLeonardo Bishop <me@leonardobishop.com>2025-08-14 18:07:12 +0100
commit4697556cac819c47d068819b9fc9c3b4ea84e279 (patch)
treeb832d8fc6b643a8b9d0eeca35c1268e1649da731 /web/tailwind.config.js
parentdd49c9205bb04844b686b9c3396c40eb49d25826 (diff)
Merge confplanner-web and replace fiber with native net/http
Diffstat (limited to 'web/tailwind.config.js')
-rw-r--r--web/tailwind.config.js16
1 files changed, 16 insertions, 0 deletions
diff --git a/web/tailwind.config.js b/web/tailwind.config.js
new file mode 100644
index 0000000..a1684d0
--- /dev/null
+++ b/web/tailwind.config.js
@@ -0,0 +1,16 @@
+/** @type {import('tailwindcss').Config} */
+export default {
+ content: [
+ "./components/**/*.{js,vue,ts}",
+ "./layouts/**/*.vue",
+ "./pages/**/*.vue",
+ "./plugins/**/*.{js,ts}",
+ "./app.vue",
+ "./error.vue",
+ ],
+ theme: {
+ extend: {},
+ },
+ plugins: [],
+}
+