spb/llmindex Public
The discriminative, contamination-resistant, fully transparent LLM ranking — updated live.
TypeScript 77.9%
TeX 15.2%
Python 3.7%
SQL 1.4%
JavaScript 1.1%
Shell 0.5%
1/**2 * llmindex.io — Tailwind configuration3 * Author: Simon-Pierre Boucher4 * Contact: contact@spboucher.ai5 * License: Proprietary — © Simon-Pierre Boucher, all rights reserved6 */7import type { Config } from 'tailwindcss';89const config: Config = {10 content: [11 './app/**/*.{ts,tsx}',12 './lib/**/*.{ts,tsx}',13 '../../packages/ui/src/**/*.{ts,tsx}',14 ],15 theme: {16 extend: {},17 },18 plugins: [],19};2021export default config;22