mirror of
https://github.com/LibreChat-AI/librechat.ai.git
synced 2026-03-27 10:48:32 +07:00
18 lines
366 B
JavaScript
18 lines
366 B
JavaScript
/* eslint-disable no-undef */
|
|
|
|
/** @type {import('next-sitemap').IConfig} */
|
|
module.exports = {
|
|
siteUrl: 'https://www.librechat.cfd',
|
|
generateRobotsTxt: true,
|
|
changefreq: 'daily',
|
|
exclude: ['*/_meta'],
|
|
additionalPaths: async () => [
|
|
{
|
|
loc: '/',
|
|
priority: 1,
|
|
changefreq: 'daily',
|
|
lastmod: new Date().toISOString(),
|
|
},
|
|
],
|
|
}
|