mirror of
https://github.com/vercel/commerce.git
synced 2025-05-17 15:06:59 +00:00
14 lines
393 B
JavaScript
14 lines
393 B
JavaScript
/**
|
|
* @type {import('next-sitemap').IConfig}
|
|
* @see https://github.com/iamvishnusankar/next-sitemap#readme
|
|
*/
|
|
module.exports = {
|
|
// !STARTERCONF Change the siteUrl
|
|
/** Without additional '/' on the end, e.g. https://developerdao.com */
|
|
siteUrl: 'https://merch.developerdao.com',
|
|
generateRobotsTxt: true,
|
|
robotsTxtOptions: {
|
|
policies: [{ userAgent: '*', allow: '/' }],
|
|
},
|
|
};
|