diff --git a/bun.lockb b/bun.lockb index 69b7fc33..c3db8989 100644 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/eleventy.config.js b/eleventy.config.js index 16420e33..cf71b6a5 100644 --- a/eleventy.config.js +++ b/eleventy.config.js @@ -1,6 +1,7 @@ // Installed Plug-ins const { EleventyRenderPlugin } = require("@11ty/eleventy"); const pluginRss = require("@11ty/eleventy-plugin-rss"); +const eleventyNavigationPlugin = require("@11ty/eleventy-navigation"); const metagen = require('eleventy-plugin-metagen'); const pluginTOC = require('eleventy-plugin-nesting-toc'); const emojiReadTime = require("@11tyrocks/eleventy-plugin-emoji-readtime"); @@ -22,6 +23,7 @@ module.exports = function (eleventyConfig) { // Installed Plug-ins eleventyConfig.addPlugin(EleventyRenderPlugin); eleventyConfig.addPlugin(pluginRss); + eleventyConfig.addPlugin(eleventyNavigationPlugin); eleventyConfig.addPlugin(metagen); eleventyConfig.addPlugin(pluginTOC, { tags: ['h2', 'h3', 'h4', 'h5'] }); eleventyConfig.addPlugin(emojiReadTime); diff --git a/package.json b/package.json index 715cce15..2945fb5c 100644 --- a/package.json +++ b/package.json @@ -13,6 +13,7 @@ }, "dependencies": { "@11ty/eleventy": "^2.0.1", + "@11ty/eleventy-navigation": "^0.3.5", "@11ty/eleventy-plugin-rss": "^1.2.0", "@11tyrocks/eleventy-plugin-emoji-readtime": "^1.0.1", "eleventy-plugin-embed-everything": "^1.18.2",