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

10 lines
331 B
JavaScript
Raw Normal View History

module.exports = function(eleventyConfig) {
2023-05-21 13:26:20 +02:00
eleventyConfig.addPassthroughCopy('static/**')
// eleventyConfig.addPassthroughCopy('static/js')
// eleventyConfig.addPassthroughCopy('static/.well-known')
// eleventyConfig.addPassthroughCopy('static/certificates')
return {
passthroughFileCopy: true
}
}