공부/Next.js
invariant expected app router to be mounted 오류
딸기버블티
2024. 4. 18. 23:20
next.js 하는데 자꾸 콘솔에 오류떠서 onClick 이벤트가 안먹음...
- 해결방법
layout.js 를 수정해준다.
<html> 태그와 <body> 태그가 있어야 하는것.
layout.js
import Link from "next/link"
import "./globals.css";
export const metadata = {
title: "Create Next App",
description: "Generated by create next app",
};
export default function RootLayout({ children }) {
return (
<html>
<body>
<div>
<div className="navbar">
<Link href="/">홈</Link>
<Link href="/list">List</Link>
</div>
{children}
</div>
</body>
</html>
);
}