This repository has been archived on 2023-12-07. You can view files and clone it, but cannot push or open issues or pull requests.
website/.eleventy.js

8 lines
201 B
JavaScript
Raw Normal View History

module.exports = function(eleventyConfig) {
eleventyConfig.addPassthroughCopy("css")
eleventyConfig.addPassthroughCopy({ "static": "/" })
return {
passthroughFileCopy: true
}
}