error - Can not resolve dependence : 'classnames', please install it error - AssertionError [ERR_ASSERTION]: dependence not found: classnames
时间: 2024-02-25 14:58:46 浏览: 143
解决Unable to access 'https://gitee.com/自己的项目/': Could not resolve host: gitee.com问题
这错误提示是因为在你所运行的代码中,缺少一个名为 "classnames" 的依赖项。你可以通过以下命令来安装该依赖项:
```
npm install classnames
```
或者如果你使用的是 yarn,可以运行以下命令:
```
yarn add classnames
```
安装完成后,你就可以在你的代码中使用 "classnames" 依赖项了。
阅读全文