Currently it's caching some old pages and it causes some errors. Here's how to reproduce it: (Thanks to @rauchg) 1. Create a page like this: ```js export default () => hi there About ``` (Here we've a tag but not a tag) 2. Then edit the hi there text into "hi Next.js". Browser will get updated via HMR. 3. Now hit the "About" link in our page 4. Hit back Then you'll see the "hi there" text but not the updated "hi Next.js" text. When you reload it the correct text appeared. ### The Issue The browser cache HTML and pages in the dev mode. Which should not be happened.