mirror of
https://github.com/r-freeman/portfolio.git
synced 2025-04-21 23:24:36 +00:00
All checks were successful
Build And Publish / BuildAndPublish (push) Successful in 3m9s
12 lines
282 B
TypeScript
12 lines
282 B
TypeScript
import {MetadataRoute} from 'next'
|
|
|
|
export default function robots(): MetadataRoute.Robots {
|
|
return {
|
|
rules: {
|
|
userAgent: '*',
|
|
allow: '/',
|
|
disallow: '/private/'
|
|
},
|
|
sitemap: 'https://ryanfreeman.dev/sitemap.xml'
|
|
}
|
|
} |