mirror of
https://github.com/vercel/commerce.git
synced 2025-07-09 14:21:21 +00:00
14 lines
210 B
TypeScript
14 lines
210 B
TypeScript
import { baseUrl } from "lib/utils";
|
|
|
|
export default function robots() {
|
|
return {
|
|
rules: [
|
|
{
|
|
userAgent: "*",
|
|
},
|
|
],
|
|
sitemap: `${baseUrl}/sitemap.xml`,
|
|
host: baseUrl,
|
|
};
|
|
}
|