mirror of
https://codeberg.org/lauralani/www-lauka-net.git
synced 2024-11-24 05:00:02 +01:00
8 lines
188 B
JavaScript
8 lines
188 B
JavaScript
|
module.exports = function(eleventyConfig) {
|
||
|
eleventyConfig.addPassthroughCopy('css')
|
||
|
eleventyConfig.addPassthroughCopy('js')
|
||
|
return {
|
||
|
passthroughFileCopy: true
|
||
|
}
|
||
|
}
|