Rach gu prìomh shusbaint Air adhart gu seòladh docs
in English

Pasgan

Ionnsaich mar a chuireas tu Bootstrap a-steach don phròiseact agad a’ cleachdadh Parcel.

Stàlaich Parcel

Stàlaich Parcel Bundler .

Stàlaich Bootstrap

Stàlaich bootstrap mar mhodal Node.js a’ cleachdadh npm.

Tha Bootstrap an urra ri Popper , a tha air a shònrachadh san peerDependenciestogalach. Tha seo a’ ciallachadh gum feum thu dèanamh cinnteach gun cuir thu an dithis aca ri do package.jsonchleachdadh npm install @popperjs/core.

Nuair a bhios iad uile deiseil, bidh structar mar seo air do phròiseact:

project-name/
├── build/
├── node_modules/
│   └── bootstrap/
│   └── popper.js/
├── scss/
│   └── custom.scss
├── src/
│   └── index.html
│   └── index.js
└── package.json

A’ toirt a-steach JavaScript

Cuir a-steach JavaScript Bootstrap gu àite inntrigidh an aplacaid agad (mar as trice src/index.js). Faodaidh tu na plugins againn uile a thoirt a-steach ann an aon fhaidhle no fa leth mura feum thu ach fo-sheata dhiubh.

// 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';

A’ toirt a-steach CSS

Gus làn chomas Bootstrap a chleachdadh agus a ghnàthachadh a rèir do fheumalachdan, cleachd na faidhlichean tùsail mar phàirt de phròiseas bundachaidh a’ phròiseict agad.

Cruthaich do chuid fhèin scss/custom.scssgus faidhlichean Sass Bootstrap a thoirt a-steach agus an uairsin cuir thairis air na caochladairean gnàthaichte togte .

Tog app

Cuir a-steach ron taga src/index.jsdùnaidh .</body>

<!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>

Deasaichpackage.json

Cuir ris devagus buildsgriobtaichean san package.jsonfhaidhle agad.

"scripts": {
  "dev": "parcel ./src/index.html",
  "prebuild": "npx rimraf build",
  "build": "parcel build --public-url ./ ./src/index.html --experimental-scope-hoisting --out-dir build"
}

Ruith dev script

Bidh an aplacaid agad ruigsinneach aig http://127.0.0.1:1234.

npm run dev

Cruthaich faidhlichean app

Tha faidhlichean togte sa build/phasgan.

npm run build