W3Cschool
恭喜您成為首批注冊(cè)用戶
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
了解如何在你的Bootstrap項(xiàng)目中使用 Parcel。
使用 npm 將Bootstrap安裝為 Node.js 模塊。
Bootstrap 依賴于 Popper,它在?peerDependencies
?屬性中指定。這意味著您必須確保使用?npm install@popperjs/core
?將它們添加到?package.json
?中。
全部完成后,您的項(xiàng)目的結(jié)構(gòu)將如下所示:
project-name/
├── build/
├── node_modules/
│ └── bootstrap/
│ └── popper.js/
├── scss/
│ └── custom.scss
├── src/
│ └── index.html
│ └── index.js
└── package.json
在應(yīng)用程序的入口點(diǎn)導(dǎo)入 Bootstrap JavaScript(通常是?src/index.js
?)。您可以在一個(gè)文件中導(dǎo)入我們的所有插件,如果您只需要其中的一個(gè)子集,也可以單獨(dú)導(dǎo)入。
// Import all plugins
import * as bootstrap from 'bootstrap';
// Or import only needed plugins
import { Tooltip as Tooltip, Toast as Toast, Popover as Popover } from 'bootstrap';
// Or import just one
import Alert as Alert from '../node_modules/bootstrap/js/dist/alert';
要充分利用 Bootstrap 的潛力并根據(jù)您的需要對(duì)其進(jìn)行自定義,請(qǐng)將源文件用作項(xiàng)目捆綁過(guò)程的一部分。
創(chuàng)建自己?scss/custom.scss
?的導(dǎo)入 Bootstrap 的 Sass 文件,然后覆蓋內(nèi)置的自定義變量。
在結(jié)束標(biāo)記?</body>
?之前包含?src/index.js
?
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<script src="./index.js"></script>
</body>
</html>
在您的?package.json
?文件中添加?dev
?和?build
?腳本。
"scripts": {
"dev": "parcel ./src/index.html",
"prebuild": "npx rimraf build",
"build": "parcel build --public-url ./ ./src/index.html --experimental-scope-hoisting --out-dir build"
}
您的應(yīng)用程序?qū)⑦\(yùn)行在?http://127.0.0.1:1234
?。
npm run dev
構(gòu)建的文件在?build/
?文件夾中。
npm run build
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: