mirror of
https://github.com/bartvdbraak/omnidash.git
synced 2025-05-02 18:01:20 +00:00
12 lines
231 B
TypeScript
12 lines
231 B
TypeScript
import { MetadataRoute } from "next";
|
|
|
|
export default function robots(): MetadataRoute.Robots {
|
|
return {
|
|
rules: {
|
|
userAgent: "*",
|
|
allow: "/",
|
|
disallow: "/private/",
|
|
},
|
|
sitemap: `sitemap.xml`,
|
|
};
|
|
}
|