sandbox-notebookllamalm-nextjs/frontend/next.config.ts
DJP 7e1eb60a4a Fix critical bugs and improve features
- 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>
2025-10-03 15:27:32 -04:00

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;