crawfi.sh/.eleventy.js
Julien Negrotto a1f76e9046 Index updates
2025-04-16 21:39:32 -05:00

13 lines
275 B
JavaScript

export default function(eleventyConfig) {
// Copy text/ansi files to the output folder
eleventyConfig.addPassthroughCopy("src/**/*.txt");
eleventyConfig.addPassthroughCopy("src/**/*.ans");
return {
dir: {
input: "src",
output: "_site",
},
};
}