You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-5
Original file line number
Diff line number
Diff line change
@@ -61,6 +61,7 @@ NOTE: We have aligned out loader implementation to be the same as `mini-css-extr
61
61
**If you already use `mini-css-extract-plugin`, then you can just change the `require` statement - its that easy**
62
62
63
63
64
+
**DONT USE THIS INSTALL CMD IF YOU ARE BETA TESTING:**
64
65
```
65
66
yarn add --dev extract-css-chunks-webpack-plugin
66
67
```
@@ -96,7 +97,7 @@ module.exports = {
96
97
97
98
98
99
99
-
####What about Webpack 3?
100
+
### What about Webpack 3?
100
101
This is a breaking change. The entire loader has been fundamentally rewritten specifically for Webpack 4. Aiming to support our existing user base, allowing them to upgrade their infrastructure to support Webpack 4 based universally code-split server-side rendered react applications.
101
102
102
103
There have been some challenges along the way since the release of webpack 4. Ultimately the only remaining hurdle is code split, async style loading.
@@ -106,15 +107,15 @@ If you do need Webpack 3, make sure to stick with the latest `v2.x.x` release. `
106
107
107
108
108
109
109
-
Like `extract-text-webpack-plugin`, but creates multiple css files (one per chunk). Then, as part of server side rendering, you can deliver just the css chunks needed by the current request. The result is the most minimal CSS initially served compared to emerging "render path" solutions.
110
-
111
-
For a demo, `git clone`: [universal-demo](https://github.com/faceyspacey/universal-demo)
Like `extract-text-webpack-plugin`, but creates multiple css files (one per chunk). Then, as part of server side rendering, you can deliver just the css chunks needed by the current request. The result is the most minimal CSS initially served compared to emerging "render path" solutions.
117
+
118
+
For a demo, `git clone`: [universal-demo](https://github.com/faceyspacey/universal-demo)
118
119
119
120
## Recommended Installation
120
121
```
@@ -343,3 +344,4 @@ We use [commitizen](https://github.com/commitizen/cz-cli), so run `npm run cm` t
343
344
## More from FaceySpacey in Reactlandia
344
345
-[redux-first-router](https://github.com/faceyspacey/redux-first-router). It's made to work perfectly with *Universal*. Together they comprise our *"frameworkless"* Redux-based approach to what Next.js does (splitting, SSR, prefetching, and routing). *People are lovin it by the way* 😎
0 commit comments