您可能需要一个额外的加载器来处理这些加载器的结果,nodejs v12 m1

mmvthczy  于 2023-02-21  发布在  Node.js
关注(0)|答案(1)|浏览(183)
./node_modules/html-to-react/node_modules/htmlparser2/lib/esm/index.js 67:9
Module parse failed: Unexpected token (67:9)
File was processed with these loaders:
 * ./node_modules/babel-loader/lib/index.js
You may need an additional loader to handle the result of these loaders.
|   return getFeed(parseDOM(feed, options));
| }
> export * as DomUtils from "domutils"; // Old name for DomHandler
| 
| export { DomHandler as DefaultHandler };

1.节点第12版
1.使用mac m1
我的项目之前没有任何错误,但是现在当我运行npm start时,我得到了这个错误。我在StackOverflow上找不到任何解决我问题的答案。

vql8enpb

vql8enpb1#

这是一个known issue
我从1.0.0-rc.3升级到1.0.0-rc.12后遇到了同样的问题。
恢复到rc.3修复了这个问题:

npm i cheerio@1.0.0-rc.3

相关问题