Files
librechat.ai/next-sitemap.config.js
2024-05-10 02:42:16 -04:00

18 lines
365 B
JavaScript

/* eslint-disable no-undef */
/** @type {import('next-sitemap').IConfig} */
module.exports = {
siteUrl: 'https://www.librechat.ai',
generateRobotsTxt: true,
changefreq: 'daily',
exclude: ['*/_meta'],
additionalPaths: async () => [
{
loc: '/',
priority: 1,
changefreq: 'daily',
lastmod: new Date().toISOString(),
},
],
}