9 lines
272 B
TypeScript
9 lines
272 B
TypeScript
|
|
import type { MetadataRoute } from 'next'
|
||
|
|
|
||
|
|
export default function robots(): MetadataRoute.Robots {
|
||
|
|
return {
|
||
|
|
rules: { userAgent: '*', allow: '/' },
|
||
|
|
sitemap: `${(process.env.NEXT_PUBLIC_SITE_URL ?? 'http://localhost:3000').replace(/\/$/, '')}/sitemap.xml`,
|
||
|
|
}
|
||
|
|
}
|