I'm new in NextJs. I created a simple page like this:
import Head from 'next/head';
const About = () => {
return (
<div>
<Head>
<title>About</title>
</Head>
<div>
<h1>About</h1>
<p>This is About page.</p>
</div>
</div>
)
}
export default About;
But I noticed Next.js frequently downloads resources when I checked the network tab in devtools:
Even after re-opening the tab, that sends new req and fetches data...
Is it normal? or I have to manage it by configs?