Kalletlamadhav/sql_optimized_env_new
0
1import type { Config } from "tailwindcss";2 3// ⚠️ Tailwind v4 NOTE:4// Custom animations / keyframes have been moved to globals.css using @theme {}5// This file is kept for IDE support but Tailwind v4 reads config from CSS, not here.6const config: Config = {7 content: [8 "./app/**/*.{ts,tsx}",9 "./components/**/*.{ts,tsx}",10 "./hooks/**/*.{ts,tsx}",11 "./lib/**/*.{ts,tsx}",12 ],13};14 15export default config;