Skip to content

Commit

Permalink
Merge pull request #8 from YerangPark/dev
Browse files Browse the repository at this point in the history
fix: 배포환경 반응형 미적용으로 meta 태그 추가
  • Loading branch information
YerangPark authored Oct 20, 2024
2 parents 0a15a21 + e366dd3 commit 1acbffc
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 1acbffc

Please sign in to comment.