From c8dab83ebfc705e46c2e263b10330dfd390c5717 Mon Sep 17 00:00:00 2001 From: marzban-dev Date: Wed, 11 Dec 2024 20:10:19 +0330 Subject: [PATCH] Create tailwind configs --- frontend/postcss.config.js | 5 +++++ frontend/tailwind.config.js | 11 +++++++++++ 2 files changed, 16 insertions(+) create mode 100644 frontend/postcss.config.js create mode 100644 frontend/tailwind.config.js diff --git a/frontend/postcss.config.js b/frontend/postcss.config.js new file mode 100644 index 0000000..7595f17 --- /dev/null +++ b/frontend/postcss.config.js @@ -0,0 +1,5 @@ +export default { + plugins: { + '@tailwindcss/postcss': {}, + }, +}; \ No newline at end of file diff --git a/frontend/tailwind.config.js b/frontend/tailwind.config.js new file mode 100644 index 0000000..94c1766 --- /dev/null +++ b/frontend/tailwind.config.js @@ -0,0 +1,11 @@ +const plugin = require("tailwindcss/plugin"); + +/** @type {import("tailwindcss").Config} */ +module.exports = { + theme: { + extend : { + } + }, + plugins: [ + ] +};