Troubleshooting
Find solutions to common issues that you may face during apps development.
Issues
I see Typescript errors
Saleor Apps, SDK and App Template use pnpm package manager. It can be sensitive with dependencies resolutions, especially in a monorepo setup.
Please ensure you have installed the right version of pnpm on your machine and re-install dependencies with pnpm install
.
To find the accurate pnpm version in your project, check the root package.json
file and look for the packageManager
field.
For example: "packageManager": "pnpm@8.2.0"
means that you need to install exactly the 8.2.0
version of pnpm.
Was this page helpful?