An open API service indexing awesome lists of open source software.

https://github.com/azrubael/221106-olxwp

'Webpack From Zero to Hero' with OLX pro
https://github.com/azrubael/221106-olxwp

Last synced: about 1 year ago
JSON representation

'Webpack From Zero to Hero' with OLX pro

Awesome Lists containing this project

README

          

# Webpack From Zero to Hero
by Rubens Pinheiro Gonçalves Cavalcante
(https://tech.olx.com/webpack-from-zero-to-hero-5540b6d620ec)
Chapter 0: Introduction and History
Chapter 1: Getting Started
Chapter 2: Tidying Up Webpack
Chapter 3: Everything is a Module
Chapter 4: Dynamic Imports and Code Splitting
Chapter 5 (final): Route Based Code Splitting with React

#### Scripts
"scripts": {
"build": "webpack --mode=production",
"start": "webpack-dev-server --mode=production",
"bdev": "webpack --mode=development",
"sdev": "webpack-dev-server --mode=development",
"analyze": "yarn build --env=analyze"
},