diff --git a/README.md b/README.md
index 3c570d29..c665a044 100644
--- a/README.md
+++ b/README.md
@@ -367,6 +367,16 @@ new MiniCssExtractPlugin({
}),
```
+### Disable Asynchronous Downloading of CSS
+
+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.
+
+```javascript
+new MiniCssExtractPlugin({
+ disableAsync: true,
+}),
+```
+
### Media Query Plugin
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:
diff --git a/package.json b/package.json
index 3cce8c9a..52c9fe82 100644
--- a/package.json
+++ b/package.json
@@ -28,6 +28,7 @@
"test:watch": "cross-env NODE_ENV=test jest --watch",
"test:coverage": "cross-env NODE_ENV=test jest --collectCoverageFrom=\"src/**/*.js\" --coverage",
"test:manual": "webpack-dev-server test/manual/src/index.js --open --config test/manual/webpack.config.js",
+ "test:manualDisableAsync": "webpack-dev-server test/manualDisableAsyncOption/src/index.js --open --config test/manualDisableAsyncOption/webpack.config.js",
"pretest": "npm run lint",
"test": "cross-env NODE_ENV=test npm run test:coverage",
"defaults": "webpack-defaults"
diff --git a/src/index.js b/src/index.js
index bbe672a4..23fe46c1 100644
--- a/src/index.js
+++ b/src/index.js
@@ -304,6 +304,7 @@ class MiniCssExtractPlugin {
mainTemplate.hooks.requireEnsure.tap(
pluginName,
(source, chunk, hash) => {
+ if (this.options.disableAsync) return null;
const chunkMap = this.getCssChunkObject(chunk);
if (Object.keys(chunkMap).length > 0) {
diff --git a/test/manualDisableAsyncOption/index.html b/test/manualDisableAsyncOption/index.html
new file mode 100644
index 00000000..6491a340
--- /dev/null
+++ b/test/manualDisableAsyncOption/index.html
@@ -0,0 +1,15 @@
+
+
+