bvn13-me/.eleventy.js

17 lines
391 B
JavaScript
Raw Normal View History

2021-11-21 11:26:49 +03:00
module.exports = function(eleventyConfig) {
// assets we want to passthrough
2021-11-21 23:37:35 +03:00
2021-11-21 11:26:49 +03:00
eleventyConfig.addPassthroughCopy('./src/main.css');
eleventyConfig.addPassthroughCopy('./src/lib/main.js');
eleventyConfig.addPassthroughCopy('./src/assets');
2021-11-22 03:33:51 +03:00
eleventyConfig.addPassthroughCopy('./src/favicon_io');
2021-11-21 11:26:49 +03:00
return {
dir: {
input: "src",
2021-11-21 23:37:35 +03:00
output: "public"
2021-11-21 11:26:49 +03:00
}
}
};