-
While deploying to fleek I got this error and I have no idea how to fix it:
My repo: |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 7 replies
-
@Bartekl-13 Fleek is not able to read your repository, 11:27:27 PM 06/13/2023: fatal: Could not read from remote repository.
11:27:27 PM 06/13/2023: Please make sure you have the correct access rights
11:27:27 PM 06/13/2023: and the repository exists. |
Beta Was this translation helpful? Give feedback.
-
@Bartekl-13
Delete |
Beta Was this translation helpful? Give feedback.
I figured it out!
The problem was with yarn.lock. I think I had installed a package using npm so the update was not reflected on yarn.lock
Delete yarn.lock and copy it from the repo.
Delete node_modules.
Now run
yarn
oryarn install
.This shall hopefully work.