22 lines
391 B
TypeScript
22 lines
391 B
TypeScript
import type { MetadataRoute } from "next";
|
|
|
|
export const dynamic = "force-static";
|
|
|
|
export default function robots(): MetadataRoute.Robots {
|
|
return {
|
|
rules: {
|
|
userAgent: "*",
|
|
allow: "/",
|
|
disallow: [
|
|
"/api/",
|
|
"/briefs/",
|
|
"/cvs",
|
|
"/executive-summary",
|
|
"/landscape",
|
|
"/login",
|
|
"/walgreens",
|
|
],
|
|
},
|
|
};
|
|
}
|