www-lauka-net-11ty/.eleventy.js

9 lines
322 B
JavaScript
Raw Normal View History

module.exports = function(eleventyConfig) {
2023-05-21 13:32:30 +02:00
eleventyConfig.addPassthroughCopy({ "static/.well-known": ".well-known" })
eleventyConfig.addPassthroughCopy({ "static/certificates": "certificates" })
eleventyConfig.addPassthroughCopy({ "static/css": "css" })
return {
passthroughFileCopy: true
}
}