Skip to content

Commit

Permalink
fix: update robots meta tag to allow indexing
Browse files Browse the repository at this point in the history
  • Loading branch information
sushichan044 committed Feb 12, 2025
1 parent ce15d14 commit 83cabbc
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions app/routes/_index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,8 @@ export const meta: MetaFunction = () => {
"BirdXPlorer Viewer is a X community note viewer with search functionality.",
},
{
// TODO: 2. サブドメインの紐付けが完了したら外す
name: "robots",
content: "noindex, nofollow",
content: "index, follow",
},
];
};
Expand All @@ -47,7 +46,6 @@ export const links: LinksFunction = () => {
return [
{
rel: "canonical",
// TODO: 1. サブドメインの紐付けが完了したら必要に応じて URL を差し替える
href: "https://birdxplorer.code4japan.org",
},
];
Expand Down

0 comments on commit 83cabbc

Please sign in to comment.