- Add getSynthesis API endpoint (fixes console error) - Fix message count display in chat sessions (SQL JOIN) - Smart notebook deletion with share confirmation - Auto-trigger synthesis when documents complete - Regenerate synthesis on document add/delete - Auto-retry pending background tasks on startup - Backend session deduplication (10-second window) - Disable React Query mutation retries - Disable React Strict Mode - Clean up old documentation files 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
7 lines
208 B
TypeScript
7 lines
208 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
reactStrictMode: false, // Disable to prevent double-mounting in dev that causes duplicate mutations
|
|
};
|
|
|
|
export default nextConfig;
|