From 60a34d7d97f86ec32060a1a92ec9727d2ae5dfb7 Mon Sep 17 00:00:00 2001 From: Zack Jackson Date: Fri, 21 Dec 2018 02:04:17 -0800 Subject: [PATCH] docs(readme): adding extract css chunks to readme (#874) --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ce9bae14..d71beb29 100644 --- a/README.md +++ b/README.md @@ -658,7 +658,9 @@ module.exports = { ### Extract For production builds it's recommended to extract the CSS from your bundle being able to use parallel loading of CSS/JS resources later on. -This can be achieved by using the [mini-css-extract-plugin](https://github.com/webpack-contrib/mini-css-extract-plugin) to extract the CSS when running in production mode. +- This can be achieved by using the [mini-css-extract-plugin](https://github.com/webpack-contrib/mini-css-extract-plugin) to extract the CSS when running in production mode. + +- As an alternative, if seeking better development performance and css outputs that mimic production. [extract-css-chunks-webpack-plugin](https://github.com/faceyspacey/extract-css-chunks-webpack-plugin) offers a hot module reload friendly, extended version of mini-css-extract-plugin. HMR real CSS files in dev, works like mini-css in non-dev ## Contributing