diff --git a/bun.lockb b/bun.lockb index 50608364..ca689707 100644 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/eleventy.config.js b/eleventy.config.js index 243959ea..866653b1 100644 --- a/eleventy.config.js +++ b/eleventy.config.js @@ -1,8 +1,15 @@ +// Installed Plug-ins +const pluginWebc = require("@11ty/eleventy-plugin-webc"); + module.exports = function (eleventyConfig) { + // Copy files eleventyConfig.addPassthroughCopy("./src/assets/"); eleventyConfig.addWatchTarget("./src/assets/"); eleventyConfig.addPassthroughCopy({ "./src/assets/feed/": "/" }); + // Installed Plug-ins + eleventyConfig.addPlugin(pluginWebc); + return { dir: { input: "src" diff --git a/package.json b/package.json index b28452d2..f29e3b7c 100644 --- a/package.json +++ b/package.json @@ -12,6 +12,8 @@ "typescript": "^5.0.0" }, "dependencies": { - "@11ty/eleventy": "^2.0.1" + "@11ty/eleventy": "^2.0.1", + "@11ty/eleventy-plugin-webc": "^0.11.2", + "install": "^0.13.0" } } \ No newline at end of file