1

根据文档,我应该能够这样做来导入一个组件以在我的 React 应用程序中使用:

import { Alert } from 'reactstrap';

但是,这将导致 webpack 像这样抱怨:

| 未找到模块:错误:无法解析“~/project/client/app/bundles/Frontend/components/team”中的“reactstrap”

然后,我将导入切换为:

import Alert from 'reactstrap/lib/Alert';

并且导入和功能有效!

这可能意味着(?)某些配置或模块导出不适用于该模块。我在哪里可以开始调试/修复这个?

4

0 回答 0