Nyxblog/eleventy.config.js

134 lines
4 KiB
JavaScript
Raw Permalink Normal View History

import { IdAttributePlugin, InputPathToUrlTransformPlugin, HtmlBasePlugin } from "@11ty/eleventy";
import { feedPlugin } from "@11ty/eleventy-plugin-rss";
2023-11-10 16:41:13 -06:00
import pluginSyntaxHighlight from "@11ty/eleventy-plugin-syntaxhighlight";
import pluginNavigation from "@11ty/eleventy-navigation";
2024-04-25 11:43:34 -05:00
import pluginFilters from "./_config/filters.js";
2025-01-10 08:17:35 -06:00
/** @param {import("@11ty/eleventy").UserConfig} eleventyConfig */
2023-11-10 16:41:13 -06:00
export default async function(eleventyConfig) {
// Drafts, see also _data/eleventyDataSchema.js
eleventyConfig.addPreprocessor("drafts", "*", (data, content) => {
if(data.draft && process.env.ELEVENTY_RUN_MODE === "build") {
return false;
}
});
2023-01-23 11:37:44 -06:00
// Copy the contents of the `public` folder to the output folder
// For example, `./public/css/` ends up in `_site/css/`
2024-04-25 11:43:34 -05:00
eleventyConfig
.addPassthroughCopy({
"./public/": "/"
2024-04-25 11:43:34 -05:00
})
.addPassthroughCopy("./content/feed/pretty-atom-feed.xsl");
2023-01-23 14:39:36 -06:00
// Run Eleventy when these files change:
// https://www.11ty.dev/docs/watch-serve/#add-your-own-watch-targets
// Watch images for the image pipeline.
eleventyConfig.addWatchTarget("content/**/*.{svg,webp,png,jpg,jpeg,gif}");
// Per-page bundles, see https://github.com/11ty/eleventy-plugin-bundle
// Adds the {% css %} paired shortcode
eleventyConfig.addBundle("css", {
toFileDirectory: "dist",
});
// Adds the {% js %} paired shortcode
eleventyConfig.addBundle("js", {
toFileDirectory: "dist",
});
2023-01-24 08:08:52 -06:00
// Official plugins
2024-06-12 10:41:34 -05:00
eleventyConfig.addPlugin(pluginSyntaxHighlight, {
preAttributes: { tabindex: 0 }
});
eleventyConfig.addPlugin(pluginNavigation);
eleventyConfig.addPlugin(HtmlBasePlugin);
eleventyConfig.addPlugin(InputPathToUrlTransformPlugin);
eleventyConfig.addPlugin(feedPlugin, {
type: "atom", // or "rss", "json"
2024-06-09 07:43:29 -05:00
outputPath: "/feed/feed.xml",
stylesheet: "pretty-atom-feed.xsl",
templateData: {
2024-06-09 07:43:29 -05:00
eleventyNavigation: {
key: "Feed",
2024-10-01 15:54:03 -05:00
order: 4
}
},
2024-06-09 07:43:29 -05:00
collection: {
name: "posts",
limit: 10,
},
metadata: {
language: "en",
2025-03-02 11:27:20 -06:00
title: "Nyxblog",
subtitle: "blog for everypizza.im and nyx",
base: "https://blog.everypizza.im/",
author: {
2025-03-02 11:27:20 -06:00
name: "Nyx Tutt"
}
}
});
2023-01-23 12:15:30 -06:00
// Filters
2024-04-25 11:43:34 -05:00
eleventyConfig.addPlugin(pluginFilters);
2023-01-23 11:37:44 -06:00
eleventyConfig.addPlugin(IdAttributePlugin, {
// by default we use Eleventys built-in `slugify` filter:
// slugify: eleventyConfig.getFilter("slugify"),
2024-08-09 16:38:07 -05:00
// selector: "h1,h2,h3,h4,h5,h6", // default
2023-01-23 11:37:44 -06:00
});
2024-03-07 08:09:42 -06:00
eleventyConfig.addShortcode("currentBuildDate", () => {
return (new Date()).toISOString();
});
2024-03-07 08:09:42 -06:00
2023-01-23 14:39:36 -06:00
// Features to make your build faster (when you need them)
2023-01-23 12:34:39 -06:00
// If your passthrough copy gets heavy and cumbersome, add this line
// to emulate the file copy on the dev server. Learn more:
// https://www.11ty.dev/docs/copy/#emulate-passthrough-copy-during-serve
// eleventyConfig.setServerPassthroughCopyBehavior("passthrough");
2024-04-25 11:43:34 -05:00
};
2023-01-23 12:34:39 -06:00
2024-04-25 11:43:34 -05:00
export const config = {
// Control which files Eleventy will process
// e.g.: *.md, *.njk, *.html, *.liquid
templateFormats: [
"md",
"njk",
"html",
"liquid",
"11ty.js",
2024-04-25 11:43:34 -05:00
],
// Pre-process *.md files with: (default: `liquid`)
markdownTemplateEngine: "njk",
// Pre-process *.html files with: (default: `liquid`)
htmlTemplateEngine: "njk",
// These are all optional:
dir: {
input: "content", // default: "."
includes: "../_includes", // default: "_includes" (`input` relative)
data: "../_data", // default: "_data" (`input` relative)
output: "_site"
},
// -----------------------------------------------------------------
// Optional items:
// -----------------------------------------------------------------
// If your site deploys to a subdirectory, change `pathPrefix`.
// Read more: https://www.11ty.dev/docs/config/#deploy-to-a-subdirectory-with-a-path-prefix
// When paired with the HTML <base> plugin https://www.11ty.dev/docs/plugins/html-base/
// it will transform any absolute URLs in your HTML to include this
// folder name and does **not** affect where things go in the output folder.
// pathPrefix: "/",
};