You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After following the steps to clone the repository and install dependencies, running the command npm run start in the 01-getting-started directory results in a MODULE_NOT_FOUND error for the source-map-support/register module.
Operating System: MAC M1 23.6.0 Darwin Kernel Version 23.6.0: Mon Jul 29 21:14:30 PDT 2024; root:xnu-10063.141.2~1/RELEASE_ARM64_T6000 arm64
Additional Context
The error occurs right after running npm run start in the 01-getting-started directory. There were no other errors during the installation of dependencies.
The text was updated successfully, but these errors were encountered:
Description
After following the steps to clone the repository and install dependencies, running the command
npm run start
in the01-getting-started
directory results in aMODULE_NOT_FOUND
error for thesource-map-support/register
module.Steps to Reproduce
Clone the repository:
Navigate to the
01-getting-started
example directory:cd examples/01-getting-started
Install dependencies:
Run the project:
npm run build && npm run start or npm run start:dev
See the error:
Expected Behavior
The project should start successfully without encountering the
MODULE_NOT_FOUND
error.Actual Behavior
The project fails to start due to a missing module (
source-map-support/register
), throwing the following error:Error: Cannot find module 'source-map-support/register' Node.js v22.9.0
Environment
v22.9.0
10.8.3
Additional Context
The error occurs right after running
npm run start
in the01-getting-started
directory. There were no other errors during the installation of dependencies.The text was updated successfully, but these errors were encountered: