mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
ffade8d5ac
* Fix HMR not working issue. Our hot-reload code on the server has custom webpack error dectection logic. Is supports only multi-modules entries. So, we need to all entries as multi-module entries even if there's just a single entry. * Add a test case for showing errors over HMR.
8 lines
116 B
JavaScript
8 lines
116 B
JavaScript
export default () => (
|
|
<div className='hmr-about-page'>
|
|
<p>
|
|
This is the about page.
|
|
</p>
|
|
</div>
|
|
)
|