我想要我的 react/redux 应用程序中 reactstrap 的最新提交。我已将它添加到我的 package.json 中,如下所示:
"dependencies": {
"reactstrap": "git@github.com:reactstrap/reactstrap.git#24951541a110451c167ff53e6ebb367972717bc5",
}
它似乎安装得很好,但是当我使用 npm start 启动我的开发服务器时,我收到以下错误:
Module not found: 'reactstrap' in /myapp/src/views/Scans
以这种方式安装它并正确包含它,我需要做些什么特别的事情吗?
谢谢!