add basic stuff

This commit is contained in:
2023-10-11 02:20:10 +05:30
parent eaca56b876
commit 2552a4b9d4
4 changed files with 55 additions and 0 deletions

13
eleventy.config.cjs Normal file
View File

@@ -0,0 +1,13 @@
const { EleventyHtmlBasePlugin } = require("@11ty/eleventy");
module.exports = function(eleventyConfig){
eleventyConfig.addPlugin(EleventyHtmlBasePlugin);
eleventyConfig.addPassthroughCopy("static");
return {
pathPrefix: "/",
dir: {
input: "src",
},
}
}