import { MetadataRoute } from 'next'; export const dynamic = 'force-static'; export default function robots(): MetadataRoute.Robots { return { rules: { userAgent: '*', allow: '/', disallow: '/_next/', }, sitemap: 'https://hondavert.com/sitemap.xml', }; }