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

9 lines
241 B
JavaScript
Raw Normal View History

module.exports = function(eleventyConfig) {
eleventyConfig.addPassthroughCopy('css')
eleventyConfig.addPassthroughCopy('js')
2023-03-30 07:53:20 +02:00
eleventyConfig.addPassthroughCopy('.well-known')
return {
passthroughFileCopy: true
}
}