You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
455 B
JavaScript

const { DateTime } = require("luxon");
module.exports = function (eleventyConfig) {
eleventyConfig.addPassthroughCopy("./src/css/styles.css");
eleventyConfig.addPassthroughCopy("./src/img");
eleventyConfig.addFilter("readableDate", (dateObj) => {
return DateTime.fromJSDate(dateObj, { zone: "utc" })
.setLocale("fr")
.toFormat("dd LLL yyyy");
});
return {
dir: {
input: "src",
output: "public",
},
};
};