11 lines
174 B
TypeScript
11 lines
174 B
TypeScript
|
import { MetadataRoute } from "next";
|
||
|
|
||
|
export default function robots(): MetadataRoute.Robots {
|
||
|
return {
|
||
|
rules: {
|
||
|
userAgent: "*",
|
||
|
allow: "/",
|
||
|
},
|
||
|
};
|
||
|
}
|