add boilerplate

This commit is contained in:
2023-02-21 00:02:35 +10:30
commit 80ee80e014
19 changed files with 3964 additions and 0 deletions

15
.eleventy.js Normal file
View File

@ -0,0 +1,15 @@
module.exports = function (eleventyConfig) {
eleventyConfig.addPassthroughCopy("./src/css");
eleventyConfig.addPassthroughCopy("./src/img");
eleventyConfig.addPassthroughCopy("./src/fonts");
eleventyConfig.addPassthroughCopy("./src/js");
return {
passthroughFileCopy: true,
dir: {
input: "src",
output: "public",
includes: "_includes",
},
};
};