Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
legacy-peer-deps=true
Copy link

Copilot AI Apr 11, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Committing legacy-peer-deps=true at the repo root disables peer-dependency resolution checks for all npm install/ci runs (including nested projects like ai-micro/). That can mask genuine peer incompatibilities and make installs less predictable. Consider scoping this to CI only (e.g., pass --legacy-peer-deps or set NPM_CONFIG_LEGACY_PEER_DEPS=true in the affected workflows), or eliminate the root cause by removing the unused nodemailer dependency (no code references found) so the optional next-auth peer is simply absent.

Suggested change
legacy-peer-deps=true

Copilot uses AI. Check for mistakes.
2 changes: 1 addition & 1 deletion next-env.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/// <reference types="next" />
/// <reference types="next/image-types/global" />
import "./.next/dev/types/routes.d.ts";
import "./.next/types/routes.d.ts";

// NOTE: This file should not be edited
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.
Loading
Loading