Initial Commit

This commit is contained in:
KoenDR06 2025-04-13 02:47:46 +02:00
commit 3da46b8e0e
16 changed files with 279 additions and 0 deletions

12
eleventy.config.js Normal file
View file

@ -0,0 +1,12 @@
export default function (eleventyConfig) {
eleventyConfig.addPassthroughCopy("src/static/");
eleventyConfig.addWatchTarget("src/styles/");
return {
dir: {
input: 'src',
output: '_site'
}
};
}