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>
11 lines
322 B
TypeScript
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;
|