Skip to content

Commit

Permalink
Fix: 불필요한 메타태그 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
minchodang committed May 19, 2024
1 parent f41ee40 commit 1702a1f
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,9 @@ import { Metadata } from 'next';
interface LocaleLayoutProps {
children: React.ReactNode;
}
export const metadata: Metadata = {
title: 'Meta Test',
description: 'Meta Test',
};

const LocaleLayout: FC<LocaleLayoutProps> = ({ children }) => (
<html lang="ko">
<head>
<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests" />
</head>
<body>
<TanstackQueryProvider>
{children}
Expand Down

0 comments on commit 1702a1f

Please sign in to comment.