init template

This commit is contained in:
2023-10-17 12:54:59 +05:30
commit 42cddb207a
8 changed files with 2438 additions and 0 deletions

11
eleventy.config.cjs Normal file
View File

@@ -0,0 +1,11 @@
const { EleventyHtmlBasePlugin } = require("@11ty/eleventy");
module.exports = function(eleventyConfig){
eleventyConfig.setServerPassthroughCopyBehavior("passthrough");
eleventyConfig.addPassthroughCopy({
"./node_modules/@picocss/pico/css/pico.min.*": "./",
}, {debug: true})
eleventyConfig.addPlugin(EleventyHtmlBasePlugin);
}