-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathnext-sitemap.config.js
More file actions
36 lines (36 loc) · 935 Bytes
/
next-sitemap.config.js
File metadata and controls
36 lines (36 loc) · 935 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/** @type {import('next-sitemap').IConfig} */
module.exports = {
siteUrl: "https://www.cipherwill.com",
generateRobotsTxt: true,
additionalPaths: async (config) => [
await config.transform(config, "/"),
],
exclude: [
"/manifest.webmanifest",
"/i",
"/auth/*",
"/executor",
"/blogs-sitemap.xml",
"/executor/*",
"/app",
"/app/*",
"/callback",
"/callback/*",
"/i/frequently-asked-questions/sitemap.xml",
"/i/legacy",
"/i/assets",
"/i/security",
"/i/grief",
"/i/legal",
"/i/personas/sitemap.xml",
"/careers/sitemap.xml",
], // <= exclude here
robotsTxtOptions: {
additionalSitemaps: [
"https://www.cipherwill.com/blogs-sitemap.xml",
"https://www.cipherwill.com/i/frequently-asked-questions/sitemap.xml",
"https://www.cipherwill.com/i/personas/sitemap.xml",
"https://www.cipherwill.com/careers/sitemap.xml",
],
},
};