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 — Next.js configuration (standalone output for m3u96b deployment)3 * Author: Simon-Pierre Boucher4 * Contact: contact@spboucher.ai5 * License: Proprietary — © Simon-Pierre Boucher, all rights reserved6 */78/** @type {import('next').NextConfig} */9const nextConfig = {10 output: 'standalone',11 transpilePackages: ['@llmindex/db', '@llmindex/scoring', '@llmindex/ui', '@llmindex/items'],12 experimental: {13 outputFileTracingIncludes: {14 '/': ['./node_modules/.prisma/client/**'],15 },16 },17};1819export default nextConfig;20