-
Describe the BugApp won't open/run in new installation Link to the code that reproduces this issuepnpm dev Reproduction StepsCreate new environment, running node 22 (or 20).
tried both postgres and sqlite install successful, cd into directory
starts. load localhost:3000
Which area(s) are affected? (Select all that apply)area: core, area: ui Environment Info
|
Beta Was this translation helpful? Give feedback.
Replies: 11 comments
-
Please add a reproduction in order for us to be able to investigate. Depending on the quality of reproduction steps, this issue may be closed if no reproduction is provided. Why was this issue marked with the
|
Beta Was this translation helpful? Give feedback.
-
Same here! |
Beta Was this translation helpful? Give feedback.
-
Tried 3.19 and 3.18 versions and both have same issue |
Beta Was this translation helpful? Give feedback.
-
Same issue here. |
Beta Was this translation helpful? Give feedback.
-
Same here with: |
Beta Was this translation helpful? Give feedback.
-
Same here |
Beta Was this translation helpful? Give feedback.
-
Yes this is also my problem, after trying tons of things for hours that is not related with payload cms, I am here too. Please fix this |
Beta Was this translation helpful? Give feedback.
-
For anyone encountering this issue, you just need to pin |
Beta Was this translation helpful? Give feedback.
-
It's working |
Beta Was this translation helpful? Give feedback.
-
Can confirm this works for me. Depending on your repo structure, you can also set
|
Beta Was this translation helpful? Give feedback.
-
This has been fixed in version 5.4.2 of Perform a clean install (recommended)Your package manager should automatically install the latest If you're using pnpm (our recommended package manager), you can run this command:
Please delete both node_modules and the lockfile, as package managers behave incorrectly if only one of them is deleted. Pin the version of
|
Beta Was this translation helpful? Give feedback.
This has been fixed in version 5.4.2 of
peek-readable
. As a result, this issue will no longer occur in fresh installs. If it's still broken for you, you have 2 options:Perform a clean install (recommended)
Your package manager should automatically install the latest
peek-readable
version, unless the older, broken version is still cached or pinned in your lockfile. Simply prune the cache, delete the lockfile and delete the node_modules folder, then install again.If you're using pnpm (our recommended package manager), you can run this command:
pnpm store prune && rm -rf node_modules pnpm-lock.yaml && pnpm i
Please delete both node_modules and the lockfile, as package managers behave incor…