leilukin-site/eleventy.config.js

11 lines
296 B
JavaScript
Raw Normal View History

module.exports = function (eleventyConfig) {
eleventyConfig.addPassthroughCopy("./src/assets/");
eleventyConfig.addWatchTarget("./src/assets/");
eleventyConfig.addPassthroughCopy({ "./src/assets/feed/": "/" });
return {
dir: {
input: "src"
}
};
};