14 lines
299 B
JavaScript
14 lines
299 B
JavaScript
module.exports = function(eleventyConfig) {
|
|
|
|
eleventyConfig.addPassthroughCopy('src/*.htm')
|
|
eleventyConfig.addPassthroughCopy('src/img')
|
|
eleventyConfig.addPassthroughCopy('src/fonts')
|
|
|
|
return {
|
|
dir: {
|
|
input: "src",
|
|
output: "dist",
|
|
},
|
|
passthroughFileCopy: true,
|
|
}
|
|
}
|