commerce/app/[locale]/robots.ts
2023-11-13 20:49:45 +09:00

15 lines
263 B
TypeScript

const baseUrl = process.env.NEXT_PUBLIC_VERCEL_URL
? `https://${process.env.NEXT_PUBLIC_VERCEL_URL}`
: 'http://localhost:3000';
export default function robots() {
return {
rules: [
{
userAgent: '*'
}
],
host: baseUrl
};
}