bvn13-me/.eleventy.js

16 lines
336 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');
return {
dir: {
input: "src",
2021-11-21 23:37:35 +03:00
output: "public"
2021-11-21 11:26:49 +03:00
}
}
};