www-lauka-net-11ty/.eleventy.js
2023-06-04 20:32:25 +02:00

20 lines
624 B
JavaScript

const { DateTime } = require("luxon");
module.exports = function(eleventyConfig) {
eleventyConfig.addPassthroughCopy({ "static/.well-known": ".well-known" })
eleventyConfig.addPassthroughCopy({ "static/certificates": "certificates" })
eleventyConfig.addPassthroughCopy({ "static/css": "css" })
eleventyConfig.addFilter("timestamp", function(value) {
return DateTime.fromJSDate(value).toLocaleString(DateTime.DATETIME_FULL)
});
eleventyConfig.addFilter("copyrightyear", function() {
return DateTime.local().toFormat('y')
});
return {
passthroughFileCopy: true
}
}