mirror of
https://github.com/databasus/databasus.git
synced 2026-04-06 00:32:03 +02:00
12 lines
225 B
TypeScript
12 lines
225 B
TypeScript
import { MetadataRoute } from "next";
|
|
|
|
export default function robots(): MetadataRoute.Robots {
|
|
return {
|
|
rules: {
|
|
userAgent: "*",
|
|
allow: "/",
|
|
},
|
|
sitemap: "https://postgresus.com/sitemap.xml",
|
|
};
|
|
}
|