Skip to content

Commit 7e43f1c

Browse files
authored
chore: Update ESLint configuration and layout.js
1 parent 35b278c commit 7e43f1c

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.eslintrc.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
{
2-
"extends": "next/core-web-vitals"
2+
"extends": "next/core-web-vitals",
3+
"rules": { "react/no-unescaped-entities": 0 }
4+
35
}

src/app/layout.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export const metadata = {
1010

1111
export default function RootLayout({ children }) {
1212
return (
13-
<html lang="en">
13+
<html lang="en" className="dark ">
1414
<body className={inter.className}>{children}</body>
1515
</html>
1616
);

0 commit comments

Comments
 (0)