16 lines
385 B
JavaScript
16 lines
385 B
JavaScript
/** @type {import('next-sitemap').IConfig} */
|
|
module.exports = {
|
|
siteUrl: "https://biztaghavi.com",
|
|
generateRobotsTxt: true,
|
|
generateIndexSitemap: false,
|
|
changefreq: "weekly",
|
|
priority: 0.7,
|
|
exclude: ["/studio/*", "/api/*"],
|
|
robotsTxtOptions: {
|
|
policies: [
|
|
{ userAgent: "*", allow: "/" },
|
|
{ userAgent: "*", disallow: ["/studio", "/api"] },
|
|
],
|
|
},
|
|
};
|