svrx-plugin-webpack

1.0.2 • Public • Published

svrx-plugin-webpack

svrx npm

svrx plugin for webpack

Usage

Please make sure that you have installed svrx already.

Via CLI

svrx -p "webpack"

Via API

const svrx = require('@svrx/svrx');
 
svrx({ plugins: ['webpack'] }).start();

with options

 
svrx({
    plugins: [{
        name: 'webpack',
        options: {
            hot: false
        }
    }]
}).start();

Options

config [String|Object]:

webpack config file or object, default is $root/webpack.config.js ($root means options.root)

hot [Boolean]:

Enable webpack Hot Module Replacement feature, default is true

client [Object]:

options can be passed to the client by adding querystring parameters to the path in the webpack config

see webpack-hot-middleware#client for detail

for example, options {timeout: 3000} will been encode as webpack-hot-middleware/client?timeout=3000

path [String]:

The path which the middleware will serve the event stream on, default is /__webpack_hmr

Example

License

MIT

Package Sidebar

Install

npm i svrx-plugin-webpack

Weekly Downloads

10

Version

1.0.2

License

MIT

Unpacked Size

11.8 kB

Total Files

4

Last publish

Collaborators

  • leeluolee
  • xuchaoying