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