Next.js 14 website with standalone output configured for Docker deployment. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
12 lines
258 B
TypeScript
12 lines
258 B
TypeScript
import { MetadataRoute } from "next";
|
|
|
|
export default function robots(): MetadataRoute.Robots {
|
|
return {
|
|
rules: {
|
|
userAgent: "*",
|
|
allow: "/",
|
|
disallow: ["/api/"],
|
|
},
|
|
sitemap: "https://theanatolianedit.com/sitemap.xml",
|
|
};
|
|
}
|