tidaldb/applications/iknowyou/next.config.ts
jordan 51ac377376 refactor: extract shared SSE parser and add eslint to iknowyou
Deduplicate SSE chunk parsing from input-bar.tsx and vllm.ts into a
shared lib/sse.ts consumeSSEChunk helper. Add eslint + next lint config.
Silence monorepo lockfile warning via outputFileTracingRoot.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-25 16:51:48 -07:00

11 lines
322 B
TypeScript

import type { NextConfig } from "next";
import path from "path";
const nextConfig: NextConfig = {
// Silence the "multiple lockfiles" warning — this project lives inside a
// larger monorepo and has its own lockfile by design.
outputFileTracingRoot: path.join(__dirname, "../../"),
};
export default nextConfig;