Skip to content

Commit

Permalink
Feat(mogua-station#123): robots meta 태그 추가
Browse files Browse the repository at this point in the history
- 로그인 유저 전용 페이지이므로 검색엔진 크롤링 방지를 위한 메타데이터 추가
  • Loading branch information
Stilllee committed Feb 4, 2025
1 parent 9292635 commit 37f031b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/app/user/[id]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ export async function generateMetadata({ params }: Props) {
return {
title: `${userInfo?.nickname}님의 프로필 | mogua`,
description: `${userInfo?.nickname}님의 활동 내역을 확인해보세요.`,
robots: {
index: false,
follow: false,
},
};
}

Expand Down

0 comments on commit 37f031b

Please sign in to comment.