accords-library.com/next-sitemap.config.js

38 lines
814 B
JavaScript
Raw Normal View History

2022-03-28 09:57:58 +00:00
/** @type {import('next-sitemap').IConfig} */
module.exports = {
siteUrl: process.env.NEXT_PUBLIC_URL_SELF && "https://accords-library.com",
generateRobotsTxt: true,
alternateRefs: [
{
href: `${process.env.NEXT_PUBLIC_URL_SELF}/en/`,
hreflang: "en",
},
{
href: `${process.env.NEXT_PUBLIC_URL_SELF}/es/`,
hreflang: "es",
},
2022-08-08 18:55:26 +00:00
{
href: `${process.env.NEXT_PUBLIC_URL_SELF}/fr/`,
hreflang: "fr",
},
2022-03-28 09:57:58 +00:00
{
href: `${process.env.NEXT_PUBLIC_URL_SELF}/pt-br/`,
hreflang: "pt-br",
},
2022-08-08 18:55:26 +00:00
{
href: `${process.env.NEXT_PUBLIC_URL_SELF}/ja/`,
hreflang: "ja",
},
2022-03-28 09:57:58 +00:00
],
2022-08-08 20:12:18 +00:00
exclude: [
"/en/*",
"/fr/*",
"/ja/*",
"/es/*",
"/pt-br/*",
"/404",
"/500",
"/dev/*",
],
2022-03-28 09:57:58 +00:00
};