Files
newsletter-hackernews/app/robots.ts
Riccardo Senica dc3850ac4d
Some checks failed
Deploy / lint-build-deploy (push) Failing after 1m23s
fix: rename env var
2026-01-29 18:19:00 +01:00

12 lines
239 B
TypeScript

import { MetadataRoute } from 'next';
export default function robots(): MetadataRoute.Robots {
return {
rules: {
userAgent: '*',
disallow: ''
},
sitemap: `${process.env.NEXT_PUBLIC_HOME_URL!}/sitemap.xml`
};
}