0.0.101 • Published 4 years ago

style-inject-webpack-plugin v0.0.101

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

style-inject-webpack-plugin

A plugin for webpack to inject CSS assets to style.

Install

$ yarn add style-inject-webpack-plugin

Usage

webpack.config.js

const HtmlWebpackPlugin = require('html-webpack-plugin');
const StyleInjectWebpackPlugin = require('style-inject-webpack-plugin');

module.exports = {
  entry: 'index.js',
  output: {
    path: __dirname + '/dist',
    filename: 'index_bundle.js'
  },
  plugins: [
    new HtmlWebpackPlugin(),
    new StyleInjectWebpackPlugin(),
  ],
}