Skip to content

Commit a2140e3

Browse files
committed
Updated README
1 parent 4693941 commit a2140e3

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

README.md

+10
Original file line numberDiff line numberDiff line change
@@ -367,6 +367,16 @@ new MiniCssExtractPlugin({
367367
}),
368368
```
369369

370+
### Disable Asynchronous Downloading of CSS
371+
372+
For projects in which you do not want CSS asynchronously fetched on the client side, and only want the CSS that is delivered on the server side (via link tags) to be fetched and parsed, enabling this option will give you that functionality.
373+
374+
```javascript
375+
new MiniCssExtractPlugin({
376+
disableAsync: true,
377+
}),
378+
```
379+
370380
### Media Query Plugin
371381

372382
If you'd like to extract the media queries from the extracted CSS (so mobile users don't need to load desktop or tablet specific CSS anymore) you should use one of the following plugins:

0 commit comments

Comments
 (0)