无法解析“@blueprintjs/core/dist/blueprint.css”?

ste*_*art 1 blueprint reactjs

我已经进口

import '@blueprintjs/core/dist/blueprint.css';
Run Code Online (Sandbox Code Playgroud)

但它给出了如下错误

./src/index.js
Module not found: Can't resolve '@blueprintjs/core/dist/blueprint.css' in 'D:\REACT\react-firebase\src'
Run Code Online (Sandbox Code Playgroud)

它是真的,它不在项目 src 中,它的模式模块包

为什么会发生这种情况我该如何解决这个问题

小智 5

import '@blueprintjs/core/lib/css/blueprint.css';
Run Code Online (Sandbox Code Playgroud)

代替

import '@blueprintjs/core/dist/blueprint.css';
Run Code Online (Sandbox Code Playgroud)