/** * llmindex.io — Tailwind configuration * Author: Simon-Pierre Boucher * Contact: contact@spboucher.ai * License: Proprietary — © Simon-Pierre Boucher, all rights reserved */ import type { Config } from 'tailwindcss'; const config: Config = { content: [ './app/**/*.{ts,tsx}', './lib/**/*.{ts,tsx}', '../../packages/ui/src/**/*.{ts,tsx}', ], theme: { extend: {}, }, plugins: [], }; export default config;