phantomjs-critical-css-webpack-plugin

Critical-Css-Webpack-Plugin ======================= > webpack plugin for critical css, based on [critical](https://github.com/addyosmani/critical), with publicPath supportive.

Usage no npm install needed!

<script type="module">
  import phantomjsCriticalCssWebpackPlugin from 'https://cdn.skypack.dev/phantomjs-critical-css-webpack-plugin';
</script>

README

Critical-Css-Webpack-Plugin

webpack plugin for critical css, based on critical, with publicPath supportive.

Installation

$ yarn add critical-css-webpack-plugin --dev

Usage

webpack.config.js

const CriticalCssPlugin = require('critical-css-webpack-plugin')

...
plugins: [
  new CriticalCssPlugin()
]
...

Options

same as critical options

default options

{
  base: {webpack.output.path},
  src: 'index.html',
  dest: 'index.html',
  inline: true,
  minify: true,
  extract: true,
  width: 375,
  height: 565,
  penthouse: {
    blockJSRequests: false
  }
}

You pass options to overwrite default value.

webpack.config.js

...
plugins: [
  new CriticalCssPlugin({
    // your options
  })
]
...