mirror of
https://github.com/vercel/commerce.git
synced 2025-05-10 03:37:51 +00:00
14 lines
214 B
TypeScript
14 lines
214 B
TypeScript
import { BASE_URL } from "lib/constants";
|
|
|
|
export default function robots() {
|
|
return {
|
|
rules: [
|
|
{
|
|
userAgent: '*'
|
|
}
|
|
],
|
|
sitemap: `${BASE_URL}/sitemap.xml`,
|
|
host: BASE_URL
|
|
};
|
|
}
|