I am using Eleventy. And I am using a shortcode that displays the name of the month in Dutch. It works locally, but when I deploy to Netlify, the name of the month is in English (see f.e. www.babymatras.net). Below is the code I use in the eleventy config file. Not sure what the problem is.
eleventyConfig.addShortcode("month", function () {
const formatter = new Intl.DateTimeFormat('nl', { month: 'long' });
return formatter.format(new Date());
});
Apologies for the slow response here! Are you still encountering this issue? If so, please let me know, and I will raise it to a member of the Support team.