Follow these steps to run the project in development mode:
-
Ensure the correct Node.js version is installed: Use the Node.js version specified in the
engines
field ofpackage.json
(22.x
). You can usenvm
to automatically detect and use the correct version:nvm install nvm use
-
Install the correct version of pnpm: The pnpm version is automatically picked up by Corepack from the
package.json
. Ensure Corepack is enabled:corepack enable
-
Install dependencies: Run the following command to install the project dependencies:
pnpm install
-
Start the project in development mode: Use the following command to start the project:
pnpm start