From 8659fee06ff3beed4f5abc66cae850a099670f12 Mon Sep 17 00:00:00 2001 From: keven1024 Date: Mon, 7 Apr 2025 23:20:19 +0800 Subject: [PATCH] feat(front): add Tailwind CSS configuration file --- front/tailwind.config.js | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 front/tailwind.config.js diff --git a/front/tailwind.config.js b/front/tailwind.config.js new file mode 100644 index 0000000..62dfdaf --- /dev/null +++ b/front/tailwind.config.js @@ -0,0 +1,11 @@ +module.exports = { + purge: [], + darkMode: false, // or 'media' or 'class' + theme: { + extend: {}, + }, + variants: { + extend: {}, + }, + plugins: [], +}