Nextjs v13 app routing
When setting up my folders I just copy paste page.tsx , and for some reason some have hydration errors while others don't. Even if it is the same html. wondering why this happens. I'm just setting up my pages.
app/about/page.tsx
app/dashboard/page.tsx ( hydration error )
app/profile/page.tsx
I tried npm cache clear --force, but for some reason the dashboard page will always error, and every page just looks like this
export default function Page() {
return (
<div>
hello
</div>
);
}
0 Replies