Skip to content
This repository has been archived by the owner on Dec 6, 2021. It is now read-only.

v8.0.0-rc.7

Pre-release
Pre-release
Compare
Choose a tag to compare
@egoist egoist released this 08 May 10:25
· 422 commits to master since this release

New features:

  • Use [hot] keyword to insert dev client for hot reloading

Example:

// poi.config.js
module.exports = {
  entry: {
    app: ['[hot]', './my-app.js']
  }
}

by default we only add dev client to the default entry client, so app does not have hot reloading support unless you add a [hot] keyword.