2
npm install bootstrap 

安装 bootstrap 4.5,这是最新的稳定版本

npm install bootstrap 5.0.0-alpha1

返回错误

ERR! code ETARGET
npm ERR! notarget No matching version found for bootstrap@^5
npm ERR! notarget In most cases you or one of your dependencies are requesting
npm ERR! notarget a package version that doesn't exist.

我需要 Laravel 项目的 bootstrap 5 如何安装它?

4

2 回答 2

2

npm install bootstrap@5.0.0-alpha1(或任何其他 alpha 版本)对我不起作用,但在阅读了最新的 alpha-3 发布帖子后我意识到以下工作:

npm install bootstrap@next
于 2020-11-27T16:53:28.020 回答
2

我忘记了@标志,否则通过 npm 安装 bootstrap 5 alpha 版本没有问题。

npm install bootstrap@5.0.0-alpha1
于 2020-07-19T05:30:51.880 回答