Skip to content

Commit

Permalink
Fix: meta-tag 재수정 2차
Browse files Browse the repository at this point in the history
  • Loading branch information
minchodang committed May 19, 2024
1 parent e787842 commit f41ee40
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,13 @@ interface LocaleLayoutProps {
export const metadata: Metadata = {
title: 'Meta Test',
description: 'Meta Test',
other: {
'http-equiv': 'Content-Security-Policy',
content: 'upgrade-insecure-requests'
}
};

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

0 comments on commit f41ee40

Please sign in to comment.