1

我通过. bootstrap@next_ 我将捆绑JS添加到脚本中,但编译后收到此错误:v5.0.0-alpha1npm

ERROR in ./node_modules/bootstrap/dist/js/bootstrap.esm.js
Module not found: Error: Can't resolve 'popper.js' in
'./foo/node_modules/bootstrap/dist/js'

自述文件明确指出(粗体文本):

我们提供编译后的 CSS 和 JS (bootstrap. ),以及编译和缩小的 CSS 和 JS (bootstrap.min. )。源映射 (bootstrap.*.map) 可用于某些浏览器的开发工具。捆绑的 JS 文件(bootstrap.bundle.js 和缩小的 bootstrap.bundle.min.js)包括 Popper。

角.json

"scripts": [
    "node_modules/bootstrap/dist/js/bootstrap.bundle.js",
],

知道我在这里会错过什么吗?

4

1 回答 1

2

只需在 package.json 中列出 popper 就足够了。我遇到了同样的问题,删除“node_modules/bootstrap/dist/js/bootstrap.bundle.js”后它对我有用。

于 2020-07-27T00:32:11.613 回答