mirror of
https://github.com/kevinnlsamuel/rainbowcroissant.git
synced 2025-12-06 10:06:01 +05:30
14 lines
269 B
JavaScript
14 lines
269 B
JavaScript
const { EleventyHtmlBasePlugin } = require("@11ty/eleventy");
|
|
|
|
module.exports = function(eleventyConfig){
|
|
eleventyConfig.addPlugin(EleventyHtmlBasePlugin);
|
|
eleventyConfig.addPassthroughCopy("static");
|
|
return {
|
|
pathPrefix: "/",
|
|
dir: {
|
|
input: "src",
|
|
},
|
|
}
|
|
}
|
|
|