mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
2859f12377
- cards PUT handler: stop console.info'ing the request body, which included the plaintext PIN on every PIN-change request. - wrapper.tsx: drop the duplicate ./globals.css import (already imported in app/layout.tsx, which is the canonical place). - copilot-context.tsx: replace window.location.pathname read during render with usePathname() from next/navigation, matching how components/layout.tsx already derives the current route. - next.config.mjs: remove the eslint.ignoreDuringBuilds block — Next 16 no longer runs ESLint at build, and the key now produces an "Unrecognized key(s): 'eslint'" warning. Confirmed warning is gone. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
5 lines
92 B
JavaScript
5 lines
92 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {};
|
|
|
|
export default nextConfig;
|