mirror of
https://github.com/OpenCut-app/OpenCut.git
synced 2026-07-13 21:52:53 +02:00
14 lines
325 B
TypeScript
14 lines
325 B
TypeScript
import type { MetadataRoute } from "next";
|
|
import { SITE_URL } from "@/constants/site-constants";
|
|
|
|
export default function robots(): MetadataRoute.Robots {
|
|
return {
|
|
rules: {
|
|
userAgent: "*",
|
|
allow: "/",
|
|
disallow: ["/_next/", "/projects/", "/editor/"],
|
|
},
|
|
sitemap: `${SITE_URL}/sitemap.xml`,
|
|
};
|
|
}
|