import type { Config } from "tailwindcss"; export default { content: [ "./app/**/*.{js,ts,jsx,tsx}", "./pages/**/*.{js,ts,jsx,tsx}", "./components/**/*.{js,ts,jsx,tsx}", ], theme: { extend: {}, }, future: { hoverOnlyWhenSupported: true, }, plugins: [], } satisfies Config;