feat(client): add sitemap generation to next app

This commit is contained in:
Amruth Pillai
2022-03-12 11:44:51 +01:00
parent 30d0151bdb
commit 2cbc582a12
6 changed files with 56 additions and 2 deletions

View File

@ -0,0 +1,6 @@
/** @type {import('next-sitemap').IConfig} */
module.exports = {
siteUrl: 'https://rxresu.me',
changefreq: 'monthly',
generateRobotsTxt: true,
};