mdbootstrap / mdb-starter-webpack

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

MDB Logo

MDB 5 Webpack Starter

Webpack boilerplate for Bootstrap 5 & Material Design 2.0 UI Kit

>> Support MDB 5 with a STAR

>> MDB 5 Demo

Downloads License YouTube Video Views


⚠️ The use of this Starter is at your own risk and assumes basic knowledge of Webpack, JavaScript and CSS preprocessors. We recommend creating custom versions of MDB UI KIT and themes only for advanced developers.


Installation

npm install

A free version of MDB UI Kit is already included as a dependency, to upgrade it to PRO version install the package you own with the command below.

Pro Essential installation

npm install git+https://oauth2:ACCESS_TOKEN@git.mdbootstrap.com/mdb/standard/mdb-ui-kit-pro-essential

Pro Advanced installation

npm install git+https://oauth2:ACCESS_TOKEN@git.mdbootstrap.com/mdb/standard/mdb-ui-kit-pro-advanced

Dev Server

npm run start

Build

npm run build

Features:

Files structure:

my-project/
├── dist/
│   └── index.html
├── src/
│   ├── js/
│   └── scss/
└── webpack.config.js




MDB UI KIT - Importing of MDB files

Importing JS modules

You can import the entire library or just individual modules:

import * as mdb from 'mdb-ui-kit'; // lib
import { Input } from 'mdb-ui-kit'; // module
import { Input as CustomInput } from 'mdb-ui-kit'; // module with custom name

Importing CSS file

To import MDB stylesheet please use the following syntax:

@import '~mdb-ui-kit/css/mdb.min.css';

About


Languages

Language:JavaScript 97.5%Language:SCSS 2.5%