gpt4 book ai didi

javascript - 如何使用 npm 导入 bootstrap 5 bundle js?

转载 作者:行者123 更新时间:2023-12-02 02:19:25 26 4
gpt4 key购买 nike

我在使用 bootstrap5 和 NPM 时遇到了一些问题。网站设计使用 bootstrap 并且可以工作,但不是所有的 js(下拉菜单、模式等),我只是想学习如何在没有 CDN 的情况下导入 js bs 包。有人可以帮助我吗?谢谢你的时间

我的步骤:

npm install bootstrap@5.0.0-alpha1
npm install popper.js --save
npm intsall node-sass --save-d

Package.json:

{
"name": "xlf",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "./node_modules/.bin/webpack --watch",
"sass": "node-sass --watch src/scss -o dist/css --output-style nested"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bootstrap": "^5.0.0-alpha1",
"popper.js": "^1.16.1"
},
"devDependencies": {
"node-sass": "^5.0.0",
"webpack": "^5.26.0",
"webpack-cli": "^4.5.0"
}
}

webpack.config.js

const path = require('path');

module.exports = {
entry: './src/js/app.js',
output: {
path: path.resolve(__dirname, 'dist','js'),
filename: 'app.js',
},
mode: 'production',
module: {
rules:[
{
test: /.(scss|css)$/,
use:
[
{
options: { reloadAll: true },
},
'css-loader',
'sass-loader',
'node-sass'
]
}
]
}
};

src/js/app.js

import 'bootstrap';

src/scss/app.scss

@import '../../node_modules/bootstrap/scss/bootstrap.scss';

最佳答案

通过以下步骤解决:

  1. 正在安装测试版
  2. 卸载 popper.js 并安装 @popperjs/core
  3. 在导入'bootstrap'之前添加;导入“@popper/core”;

感谢 Jabaa 的帮助。

关于javascript - 如何使用 npm 导入 bootstrap 5 bundle js?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66651539/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com