mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2026-06-11 11:06:24 +00:00
17 lines
322 B
TypeScript
17 lines
322 B
TypeScript
|
|
import type { MetadataRoute } from "next"
|
||
|
|
|
||
|
|
export const dynamic = "force-static"
|
||
|
|
|
||
|
|
export default function robots(): MetadataRoute.Robots {
|
||
|
|
return {
|
||
|
|
rules: [
|
||
|
|
{
|
||
|
|
userAgent: "*",
|
||
|
|
allow: "/",
|
||
|
|
},
|
||
|
|
],
|
||
|
|
sitemap: "https://proxmenux.com/sitemap.xml",
|
||
|
|
host: "https://proxmenux.com",
|
||
|
|
}
|
||
|
|
}
|