SyntaxError:请求的模块“react-popper”;预计是 CommonJS 类型,不支持命名导出
SyntaxError:请求的模块“react-popper”预计为类型CommonJS,不支持命名导出。 CommonJS 模块可以通过导入默认导出来导入。 例如: 从'react-popper'导入pkg; const { 经理、波普尔、参考资料 } = pkg;
下一个 js 应用程序出现此错误,我的节点版本为 14.6.0,但它在其他服务器上工作正常。
SyntaxError: The requested module 'react-popper' is expected to be of type CommonJS, which does not support named exports. CommonJS modules can be imported by importing the default export.
For example:
import pkg from 'react-popper';
const { Manager, Popper, Reference } = pkg;
Getting this error for a next js application and i have node version 14.6.0 but it works fine on other servers.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你可以使用 react-bootstrap ,它与 Next.js 一起工作正常
You can go with react-bootstrap , it is working fine with Next.js