0.1.3 • Published 10 months ago

@hippy/hippy-react-devtools-plugin v0.1.3

Weekly downloads
-
License
ISC
Repository
github
Last release
10 months ago

@hippy/hippy-react-devtools-plugin

support react devtools in Hippy

Usage

const HippyReactDevtoolsPlugin = require('@hippy/hippy-react-devtools-plugin');

module.exports = {
  // add this plugin to webpack config
  plugins: [
    // note this plugin must create before of '@hippy/hippy-react-refresh-webpack-plugin' if you use hmr
    new HippyReactDevtoolsPlugin({
      protocol: 'http',
      host: 'localhost',
      port: 38989,
    }),
  ],
  // or use @hippy/debug-server-next to auto enable this plugin
  devServer: {
    remote: {
      protocol: 'http',
      host: 'localhost',
      port: 38989,
    },
    reactDevtools: true,
  }
}

Development

# build for development in watch mode
yarn start
# build for production
yarn build
0.1.3

10 months ago

0.1.2

2 years ago

0.1.1

2 years ago

0.1.0

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago