mirror of
https://github.com/documenso/documenso.git
synced 2026-07-11 13:35:20 +10:00
b92c53dbb2
Co-authored-by: Catalin Pit <catalinpit@gmail.com>
13 lines
274 B
TypeScript
13 lines
274 B
TypeScript
import type { MetadataRoute } from 'next';
|
|
|
|
export default function robots(): MetadataRoute.Robots {
|
|
return {
|
|
rules: {
|
|
userAgent: '*',
|
|
allow: '/',
|
|
},
|
|
host: 'https://docs.documenso.com',
|
|
sitemap: 'https://docs.documenso.com/sitemap.xml',
|
|
};
|
|
}
|