|
Note: I know you are not officially accepting contributions right now so feel free to disregard this issue if the time is not right for you to look into this. I tried cloning the Sveltia CMS repo locally but building fails with the following error: Any idea where this comes from? |
Answered by
munxar
Jul 26, 2025
Replies: 1 comment 4 replies
|
Hey @m4rrc0 I had a similar problem first, but it works when I removed the pnpm-lock.yaml. that worked for me: rm pnpm-lock.yaml
pnpm i
pnpm buildhope this helps |
4 replies
Answer selected by
m4rrc0
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey @m4rrc0
I had a similar problem first, but it works when I removed the pnpm-lock.yaml.
afaik this can happen, if the architectures of the machine writing the lock file differ from the ones that install (arm, amd64m,...)
that worked for me:
hope this helps