hira777 / webpack-4-tutorial

A simple example of webpack 4 using loader, plugin, optimization.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

webpack 4 tutorial

A simple example of webpack 4 using loader, plugin, optimization.To learn more about webpack4, take a look at the following article I posted (Japanese only).

webpack 4 のローダー、プラグイン、Optimization(最適化)などの基本的な機能を利用したサンプルコードです。webpackやサンプルコードの詳細を知りたい方は以下の記事をご覧ください。

webpack 4 入門

Installation

npm install

or

yarn

Usage

Building bundle with webpack (development mode).

npm run dev

or

yarn dev

or

npx webpack --mode development --watch

Building bundle with webpack (production mode).

npm run build

or

yarn build

or

npx webpack --mode production

License

MIT

About

A simple example of webpack 4 using loader, plugin, optimization.

License:MIT License


Languages

Language:JavaScript 96.1%Language:HTML 3.9%