import fs from 'fs'; const baseUrl = 'https://ton-site.com'; const routes = ['/', '/about']; const sitemap = ` ${routes.map(route => ` ${baseUrl}${route === '/' ? '' : route} ${new Date().toISOString().split('T')[0]} ${route === '/' ? 'weekly' : 'monthly'} ${route === '/' ? '1.0' : '0.8'} `).join('\n')} `; fs.writeFileSync('/sitemap.xml', sitemap);