Help, I get this error failed to create junction point to ../../../node_modules/prettier #89270
Unanswered
devNoah2001
asked this question in
Help
Replies: 1 comment
-
|
This error is specific to Windows and usually happens when the package manager tries to create a symlink for a binary (like prettier) but the destination file is locked by another process or lacks permission. to clear the lock: 1. Close any running processes
2. Clean Re-install # Remove the locked folder and lockfile
rm -r node_modules
rm package-lock.json # or yarn.lock / pnpm-lock.yaml
# Clear cache to avoid corrupted binaries
npm cache clean --force
# Reinstall
npm install |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Summary
I get this error after trying to add Resend to my application.
failed to create junction point to ../../../node_modules/prettier
I have NextJS version 16.1.4
Additional information
No response
Example
No response
Beta Was this translation helpful? Give feedback.
All reactions