www-lauka-net-11ty/.eleventy.js
2023-08-08 07:32:56 +02:00

17 lines
586 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.addPassthroughCopy({ "static/robots.txt": "robots.txt" })
eleventyConfig.addFilter("timestamp", function(value) {
return DateTime.fromJSDate(value).toFormat('LLLL d, yyyy HH:mm ZZZZ')
});
return {
passthroughFileCopy: true
}
}