Skip to content

Commit

Permalink
🚨 Fix(#47): μŠ€ν…Œλ”” 메인 νŽ˜μ΄μ§€ Sitemap μˆ˜μ •
Browse files Browse the repository at this point in the history
  • Loading branch information
sscoderati committed Feb 29, 2024
1 parent e9553b8 commit b0e1939
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/app/sitemap.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import type { MetadataRoute } from "next";

export default function sitemap(): MetadataRoute.Sitemap {
return [
{
url: "https://steadies.kr",
lastModified: new Date().toISOString(),
changeFrequency: "daily",
priority: 0.7,
},
];
}

0 comments on commit b0e1939

Please sign in to comment.