Ivan Li
3932a2b612
Some checks failed
🚀 Build and deploy by ftp / 🎉 Deploy (push) Failing after 8m21s
14 lines
306 B
TypeScript
14 lines
306 B
TypeScript
import { MetadataRoute } from 'next';
|
|
import siteMetadata from '@/data/siteMetadata';
|
|
|
|
export default function robots(): MetadataRoute.Robots {
|
|
return {
|
|
rules: {
|
|
userAgent: '*',
|
|
allow: '/',
|
|
},
|
|
sitemap: `${siteMetadata.siteUrl}/sitemap.xml`,
|
|
host: siteMetadata.siteUrl,
|
|
};
|
|
}
|