Skip to content

Latest commit

 

History

History
37 lines (25 loc) · 602 Bytes

README.md

File metadata and controls

37 lines (25 loc) · 602 Bytes

Webpack demo

Project features

  1. separate configurations for development and production and common environments
  2. Separate webpack loaders (environment specific)
  3. Uses: sass, bootstrap, jquery, popper.js and many more

Setup

Assuming you have Node.js and npm installed clone this repo

git clone https://github.com/ziraqyoung/webpack.git && cd webpack

install project dependencies

npm install
or
yarn install

For development: (uses webpack-dev-server)

 npm start

For production: (building the project)

 npm run build