- Initial setup and all features from develop branch - Includes: auth, deploy, docker, style fixes - K3S deployment configuration
21 lines
370 B
TypeScript
21 lines
370 B
TypeScript
import { MetadataRoute } from 'next'
|
|
|
|
export default function robots(): MetadataRoute.Robots {
|
|
return {
|
|
rules: [
|
|
{
|
|
userAgent: '*',
|
|
allow: '/',
|
|
disallow: [
|
|
'/api/',
|
|
'/admin/',
|
|
'/_next/',
|
|
'/private/',
|
|
],
|
|
},
|
|
],
|
|
sitemap: 'https://www.disciples-church.com/sitemap.xml',
|
|
}
|
|
}
|
|
|