This repository was archived by the owner on Dec 6, 2021. It is now read-only.
v8.0.4
New features:
- Files ending with
.module.csshave CSS modules enabled by default. (Same for.module.sass.module.styletc.) - 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']
}
}