From 62b0ef656170129c5eea2755109047b650170872 Mon Sep 17 00:00:00 2001 From: miguel-merlin Date: Wed, 11 Dec 2024 18:48:19 -0500 Subject: [PATCH] feat: added tailwind --- postcss.config.js | 6 ++++++ tailwind.config.js | 9 +++++++++ 2 files changed, 15 insertions(+) create mode 100644 postcss.config.js create mode 100644 tailwind.config.js diff --git a/postcss.config.js b/postcss.config.js new file mode 100644 index 0000000..2e7af2b --- /dev/null +++ b/postcss.config.js @@ -0,0 +1,6 @@ +export default { + plugins: { + tailwindcss: {}, + autoprefixer: {}, + }, +} diff --git a/tailwind.config.js b/tailwind.config.js new file mode 100644 index 0000000..c189a4a --- /dev/null +++ b/tailwind.config.js @@ -0,0 +1,9 @@ +/** @type {import('tailwindcss').Config} */ +export default { + content: [], + theme: { + extend: {}, + }, + plugins: [], +} +