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