Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 620 Bytes

File metadata and controls

26 lines (21 loc) · 620 Bytes

React Style Webpack plugin

This package provides plugin for Webpack which extracts static React Style declarations into a separate CSS bundle.

The usage as simple as adding few lines of configuration into your webpack.config.js:

var ReactStylePlugin = require('react-style-webpack-plugin');

module.exports = {
  ...
  module: {
    loaders: [
      {
        test: /\.js$/,
        loader: ReactStylePlugin.loader()
      }
    ]
  },
  plugins: [
    new ReactStylePlugin('bundle.css')
  ]
}