react-style-webpack-plugin
v0.4.0
Published
Webpack plugin to extract React Style style declarations into CSS bundle
Downloads
7
Maintainers
Readme
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')
]
}