我正在尝试在本地机器上运行 React 应用程序,运行时出现此错误
npm run start
:
> node scripts/start.js
internal/validators.js:125
throw new ERR_INVALID_ARG_TYPE(name, 'string', value);
^
TypeError [ERR_INVALID_ARG_TYPE]: The "path" argument must be of type string. Received type undefined
at validateString (internal/validators.js:125:11)
at Object.resolve (path.js:161:7)
at resolveApp (D:\Projects\react-app\react-site-master\config\paths.js:10:41)
at Object.<anonymous> (D:\Projects\react-app\react-site-master\config\paths.js:73:13)
at Module._compile (internal/modules/cjs/loader.js:776:30)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:787:10)
at Module.load (internal/modules/cjs/loader.js:653:32)
at tryModuleLoad (internal/modules/cjs/loader.js:593:12)
at Function.Module._load (internal/modules/cjs/loader.js:585:3)
at Module.require (internal/modules/cjs/loader.js:690:17)
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! glc2@0.1.5 start: `node scripts/start.js`
npm ERR! Exit status 1
我尝试执行以下操作,但结果相同:
- npm 缓存清理 --force
- 使用 package-lock.json 删除 node_modules
- 安装
提前致谢,