我尝试使用命令npx serve -s build
构建我的reactJS web,但得到的是一个错误:
npm ERR! code EWORKSPACESCONFIG
npm ERR! workspaces config expects an Array
npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\Tomato\AppData\Local\npm-cache\_logs\2022-12-24T11_05_57_206Z-debug-0.log
我该怎么补救呢?
2条答案
按热度按时间eulz3vhy1#
您使用npx serve -s build进行构建失败,原因是package.json文件中的workspaces属性是一个对象,而不是数组。
尽管如此,根据Yarn文档,对象是工作空间属性的有效类型。
有关错误的详细信息,请单击here
尝试使用
yarn build
或尝试将工作区的对象更改为数组来构建项目。希望这能起作用。efzxgjgh2#
this是否回答了您的问题?
如果没有,请提供其他信息