Skip to content

Commit

Permalink
fix: 배포환경 반응형 미적용으로 meta 태그 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
YerangPark committed Oct 17, 2024
1 parent 077febc commit e366dd3
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ export const metadata: Metadata = {
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<body className={inter.className}>
<ClientLayout>{children}</ClientLayout>
</body>
Expand Down

0 comments on commit e366dd3

Please sign in to comment.