Browsers load CSS files (stylesheets) synchronously such that rendering of a page is delayed until all linked stylesheets have been downloaded. This behavior is typically desired because unstyled HTML is not something you want your users to see.
However, synchronous CSS loading can also get in the way, namely when a framework like Vue bundles your single page application such that all stylesheets are linked in index.html, but none of those styles are necessary to render the page initially. One common example is when index.html is designed to quickly show a loading indicator, then load all required assets in the background to finally transition to the main page when everything is ready. With synchronous CSS downloads the rendering of the loading indicator can be delayed to the point where e.g. a mobile user is shown a white screen for many seconds before the indicator finally shows up.
This is where asynchronous CSS loading can lead to a manifold decrease of the time to First Paint and thus to a much better perceived responsiveness of your site.
This plugin is designed for applications that are built using webpack. More specifically, your application must satisfy one of the following conditions:
- Your application is built using webpack directly or a framework that allows for the configuration of webpack with webpack.config.js.
- Your application is built using a framework like Vue that "abstracts away" webpack.config.js but provides a different way to modify the webpack configuration.
This version of the plugin has so far only been tested with webpack v4 and Vue v2. Due to the fact that only a very stable API of a plugin is used internally (namely
HtmlWebpackPlugin.getHooks
) it might work with projects that are based on later versions of these frameworks but it hasn't been tested yet.
npm install async-css-plugin --save-dev
AsyncCssPlugin
configuration depends on how your project is set up, please see Prerequisites for
more information.
If your project does not yet contain webpack.config.js, please create one in the same folder as package.json. Otherwise, please modify accordingly. In order for webpack to generate HTML, you need to add html-webpack-plugin. Moreover, for CSS to be generated into separate files it is recommended to use mini-css-extract-plugin and css-loader. You can add these dependencies as follows:
npm install html-webpack-plugin mini-css-extract-plugin css-loader --save-dev
Given the configuration recommendations for these plugins with added asynchronous CSS loading your webpack.config.js should minimally look something like this:
const AsyncCssPlugin = require("async-css-plugin"); // Added for async CSS loading
const HtmlWebpackPlugin = require("html-webpack-plugin");
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
module.exports = {
entry: __dirname + "/index.js",
output: {
path: __dirname + "/dist",
filename: "index_bundle.js",
},
module: {
rules: [
{
test: /\.css$/i,
use: [MiniCssExtractPlugin.loader, "css-loader"],
},
],
},
plugins: [
new HtmlWebpackPlugin(),
new MiniCssExtractPlugin(),
new AsyncCssPlugin({ logLevel: "info" }), // Added for async CSS loading
]
};
If your Vue project does not yet contain vue.config.js, please create one in the same folder as package.json. Otherwise, please adapt accordingly:
const AsyncCssPlugin = require("async-css-plugin"); // Added for async CSS loading
const HtmlWebpackPlugin = require("html-webpack-plugin");
module.exports = {
chainWebpack: config => {
// Added for async CSS loading
config.plugin("html-webpack-plugin").use(HtmlWebpackPlugin);
config.plugin("async-css-plugin").use(AsyncCssPlugin, [{ logLevel: "info" }]);
},
};
By default, Vue already generates separate .css files, so there should be no need to make additional changes in vue.config.js.
Once webpack is configured as detailed above, stylesheet links in the generated HTML will look similar to the following:
<link href=app.cfadf482.css rel=stylesheet media=print onload="this.media='all'">
For details on why and how this works, please see The Simplest Way to Load CSS Asynchronously by the filament group.
As mentioned above, async CSS loading only makes sense when the CSS being loaded does not affect the currently visible page. It is your responsibility to show a different page (e.g. a loading indicator) while this happens, check out Net Worth for an example.
The AsyncCssPlugin
constructor accepts an (optional)
Options object.
This plugin was inspired by async-stylesheet-webpack-plugin.