From 3ad4b9284f08a780bdaab6994ba1f93a6722dd28 Mon Sep 17 00:00:00 2001 From: AhriVastaya Date: Sun, 20 Oct 2024 10:23:54 +0000 Subject: [PATCH] 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..33ad091 --- /dev/null +++ b/postcss.config.js @@ -0,0 +1,6 @@ +module.exports = { + plugins: { + tailwindcss: {}, + autoprefixer: {}, + }, +} diff --git a/tailwind.config.js b/tailwind.config.js new file mode 100644 index 0000000..d947ab1 --- /dev/null +++ b/tailwind.config.js @@ -0,0 +1,9 @@ +/** @type {import('tailwindcss').Config} */ +module.exports = { + content: [], + theme: { + extend: {}, + }, + plugins: [], +} +