spb/chat-spboucher Public
Private universal chat interface over the OpenRouter ecosystem — 400+ models, branching, streaming, usage tracking. Next.js 16 + SQLite, PWA, deployed on m4m64a at chat.spboucher.ai
TypeScript 78.8%
CSS 15.1%
JavaScript 4.9%
Shell 1.2%
1import { defineConfig, globalIgnores } from "eslint/config";2import nextVitals from "eslint-config-next/core-web-vitals";3import nextTs from "eslint-config-next/typescript";45const eslintConfig = defineConfig([6 ...nextVitals,7 ...nextTs,8 // Override default ignores of eslint-config-next.9 globalIgnores([10 // Default ignores of eslint-config-next:11 ".next/**",12 "out/**",13 "build/**",14 "next-env.d.ts",15 ]),16]);1718export default eslintConfig;19