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

v8.0.4

Choose a tag to compare

@egoist egoist released this 21 May 01:35
· 422 commits to master since this release

New features:

  • Files ending with .module.css have CSS modules enabled by default. (Same for .module.sass .module.styl etc.)
  • You can use :hot: or [hot](deprecated) keyword to insert HMR entry for hot reloading, eg:
// poi.config.js
module.exports = {
  entry: {
    app: [':hot:', './app.js']
  }
}