mirror of
https://codeberg.org/lauralani/www-lauka-net.git
synced 2024-11-23 20:50:40 +01:00
8 lines
241 B
JavaScript
8 lines
241 B
JavaScript
module.exports = function(eleventyConfig) {
|
|
eleventyConfig.addPassthroughCopy('css')
|
|
eleventyConfig.addPassthroughCopy('js')
|
|
eleventyConfig.addPassthroughCopy('.well-known')
|
|
return {
|
|
passthroughFileCopy: true
|
|
}
|
|
}
|