This repository was archived by the owner on Dec 6, 2021. It is now read-only.
v8.0.0-rc.7
Pre-release
Pre-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.