Skip to content

Commit

Permalink
✨ Feat: robots.ts 생성
Browse files Browse the repository at this point in the history
feat: robots.ts 생성
  • Loading branch information
78-artilleryman authored and thgus5335 committed Aug 12, 2024
1 parent d9f6dd2 commit bcaca56
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions app/robots.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import type { MetadataRoute } from "next";

export default function robots(): MetadataRoute.Robots {
return {
rules: {
userAgent: "*",
allow: "/",
disallow: "/profile/",
},
sitemap: "https://feedb.vercel.app/sitemap.xml",
};
}

0 comments on commit bcaca56

Please sign in to comment.