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