我已经导入了
import '@blueprintjs/core/dist/blueprint.css';但它会给出如下错误
./src/index.js
Module not found: Can't resolve '@blueprintjs/core/dist/blueprint.css' in 'D:\REACT\react-firebase\src'它确实不在项目src中,它在模式模块包中
为什么会发生这种情况?我该如何解决?
发布于 2018-06-11 21:03:17
使用
import '@blueprintjs/core/lib/css/blueprint.css';而不是
import '@blueprintjs/core/dist/blueprint.css';https://stackoverflow.com/questions/48922297
复制相似问题