1.0.0 • Published 6 years ago
webpack-hot-css-entry v1.0.0
webpack-hot-css-entry
Webpack css hot reload, this plugin depends on webpack-hot-middleware.
Install
npm install webpack-hot-css-entry --save-devUsage
// ${roo}/webpack.config.js
module.exports = {
  entry: {
    app: [
      'react-hot-loader/babel',
      'webpack-hot-css-entry?path=/__webpack_hmr&pubicPath=/public/',
      'webpack-hot-middleware/client?path=/__webpack_hmr&noInfo=false&reload=false&quiet=false',
      './src/app.js',
    ]
  }
}Configuration
The options are implemented by by Webpack Plugin global var __resourceQuery.
path
Type: String Default: /__webpack_hmr
Hot Reload Url for webpack-hot-middleware
publicPath
Type: String Default: webpack_public_path
Webpack config publicPath
License
1.0.0
6 years ago