Parent Directory
|
Revision Log
chore: add new files
1 | import { absoluteURL } from "@/utils/utils"; |
2 | import type { MetadataRoute } from "next"; |
3 | |
4 | export default function robots(): MetadataRoute.Robots { |
5 | return { |
6 | rules: { |
7 | userAgent: "*", |
8 | allow: "/", |
9 | }, |
10 | sitemap: absoluteURL("/sitemap.xml"), |
11 | }; |
12 | } |
[email protected] | ViewVC Help |
Powered by ViewVC 1.1.26 |