Skip to content

Commit

Permalink
Fix: auth page meta 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
minchodang committed May 19, 2024
1 parent 2cafccd commit 293e7cf
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/app/auth/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { FC } from 'react';

import { useTranslations } from 'next-intl';
import Head from 'next/head';

interface HomePageLayoutProps {
children: React.ReactNode;
Expand All @@ -9,6 +10,9 @@ interface HomePageLayoutProps {

const HomePageLayout: FC<HomePageLayoutProps> = ({ children, params: { locale } }) => (
<div>
<Head>
<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests" />
</Head>
<div>{children}</div>
</div>
);
Expand Down

0 comments on commit 293e7cf

Please sign in to comment.