/webpack_assets_management

a simple step by step of managing assets with webpack

Primary LanguageJavaScript

Goal

We want a build that generates a perfect structure of something that can be uploaded directly to teamsite

So for this workshop, our final structure should look something like this:

.
├── com
│   ├── css
│   │   └── index.css
│   ├── img
│   │   └── test.jpg
│   └── js
│       └── index.js
├── example
│   └── html
│       └── index.html
└── inc
    ├── footer.html
    └── header.html

Simple, yet different from the original source structure

resources

Guides

Webpack: Getting Started a really basic guide to webpack

loaders

a list of the loaders we will work with in this workshop