From b6e83b5d20af780e69f428592d918e2d5232a728 Mon Sep 17 00:00:00 2001 From: Eshan Roy Date: Mon, 9 Dec 2024 12:18:29 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix(postcss):=20module=20import?= =?UTF-8?q?=20error?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tailwind.config.js | 38 ++------------------------------------ 1 file changed, 2 insertions(+), 36 deletions(-) diff --git a/tailwind.config.js b/tailwind.config.js index 90ab4c4..2cc7b3d 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -1,41 +1,7 @@ -/** @type {import('tailwindcss').Config} */ export default { - content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'], + content: ["./src/**/*.{html,js,jsx,ts,tsx}"], // Adjust paths to your project structure theme: { - extend: {}, - }, - plugins: [], -}; - -module.exports = { - theme: { - extend: { - animation: { - 'fade-in-up': 'fadeInUp 0.5s ease-out', - 'fade-in-down': 'fadeInDown 0.5s ease-out', - 'fade-out-up': 'fadeOutUp 0.5s ease-in', - 'spin': 'spin 0.5s linear', - 'spin-reverse': 'spinReverse 0.5s linear', - }, - keyframes: { - fadeInUp: { - '0%': { opacity: 0, transform: 'translateY(20px)' }, - '100%': { opacity: 1, transform: 'translateY(0)' }, - }, - fadeInDown: { - '0%': { opacity: 0, transform: 'translateY(-20px)' }, - '100%': { opacity: 1, transform: 'translateY(0)' }, - }, - fadeOutUp: { - '0%': { opacity: 1, transform: 'translateY(0)' }, - '100%': { opacity: 0, transform: 'translateY(-20px)' }, - }, - spinReverse: { - '0%': { transform: 'rotate(0deg)' }, - '100%': { transform: 'rotate(-360deg)' }, - }, - }, - }, + extend: {}, }, plugins: [], };