Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: 메타데이터 path 수정 #81

Merged
merged 1 commit into from
Jul 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ export default function App({ Component, pageProps }: AppProps) {
property="og:description"
content="노숙인 프로그램 참여 독려를 위한, 기관 프로그램 챌린지 서비스 WeCare"
/>
<meta property="og:image" content="@/public/pngs/ogTag.png" />
<meta property="og:image" content="/pngs/ogTag.png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="627" />
<meta property="og:locale" content="ko_KR" />
<meta property="og:site_name" content="위케어" />
<link rel="icon" href="@/public/favicon.ico" />
<link rel="icon" href="/favicon.ico" />
</Head>

<QueryClientProvider client={queryClient}>
Expand Down