@trainiac/html-inline-css-webpack-plugin

A webpack plugin for convert external style sheet to internal style sheet

Usage no npm install needed!

<script type="module">
  import trainiacHtmlInlineCssWebpackPlugin from 'https://cdn.skypack.dev/@trainiac/html-inline-css-webpack-plugin';
</script>

README

html-inline-css-webpack-plugin

MIT Licence PRs Welcome npm version

Convert external style sheet(<link rel="stylesheet"/>) to internal style sheet(<style>...<style/>).

Require mini-css-extract-plugin and html-webpack-plugin

Install

NPM

npm install html-inline-css-webpack-plugin -D

Yarn

yarn add html-inline-css-webpack-plugin -D

Minimal example

const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const HtmlWebpackPlugin = require('html-webpack-plugin');
const HTMLInlineCSSWebpackPlugin = require("html-inline-css-webpack-plugin").default;

module.exports = {
  plugins: [
    new MiniCssExtractPlugin({
      filename: "[name].css",
      chunkFilename: "[id].css"
    }),
    new HtmlWebpackPlugin(),
    new HTMLInlineCSSWebpackPlugin(),
  ],
  module: {
    rules: [
      {
        test: /\.css$/,
        use: [
          MiniCssExtractPlugin.loader,
          "css-loader"
        ]
      }
    ]
  }
}

Config

interface Config {
  filter?(fileName: string): boolean
}

filter(optional)

Return true to make current file internal, otherwise ignore current file.

example
...
    new HTMLInlineCSSWebpackPlugin({
      filter(fileName) {
        return fileName.includes('main');
      },
    }),
...