2024-07-16 15:45:08 -05:00
|
|
|
|
import { IdAttributePlugin, InputPathToUrlTransformPlugin, HtmlBasePlugin } from "@11ty/eleventy";
|
2024-06-08 20:58:22 -05:00
|
|
|
|
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) {
|
2024-09-24 12:18:16 -05:00
|
|
|
|
// 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({
|
2024-09-11 16:14:43 -05:00
|
|
|
|
"./public/": "/"
|
2024-04-25 11:43:34 -05:00
|
|
|
|
})
|
|
|
|
|
.addPassthroughCopy("./content/feed/pretty-atom-feed.xsl");
|
2024-04-24 17:31:32 -05:00
|
|
|
|
|
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
|
|
|
|
|
|
2025-01-08 13:17:10 -06:00
|
|
|
|
// Watch images for the image pipeline.
|
|
|
|
|
eleventyConfig.addWatchTarget("content/**/*.{svg,webp,png,jpg,jpeg,gif}");
|
2023-01-23 14:50:45 -06:00
|
|
|
|
|
2024-05-01 10:17:05 -05:00
|
|
|
|
// Per-page bundles, see https://github.com/11ty/eleventy-plugin-bundle
|
|
|
|
|
// Adds the {% css %} paired shortcode
|
2024-09-11 16:14:43 -05:00
|
|
|
|
eleventyConfig.addBundle("css", {
|
|
|
|
|
toFileDirectory: "dist",
|
|
|
|
|
});
|
2024-07-16 15:45:08 -05:00
|
|
|
|
// Adds the {% js %} paired shortcode
|
2024-09-11 16:14:43 -05:00
|
|
|
|
eleventyConfig.addBundle("js", {
|
|
|
|
|
toFileDirectory: "dist",
|
|
|
|
|
});
|
2024-05-01 10:17:05 -05:00
|
|
|
|
|
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);
|
|
|
|
|
|
2024-06-08 20:58:22 -05:00
|
|
|
|
eleventyConfig.addPlugin(feedPlugin, {
|
2024-10-01 15:42:41 -05:00
|
|
|
|
type: "atom", // or "rss", "json"
|
2024-06-09 07:43:29 -05:00
|
|
|
|
outputPath: "/feed/feed.xml",
|
|
|
|
|
stylesheet: "pretty-atom-feed.xsl",
|
2024-06-08 20:58:22 -05:00
|
|
|
|
templateData: {
|
2024-06-09 07:43:29 -05:00
|
|
|
|
eleventyNavigation: {
|
|
|
|
|
key: "Feed",
|
2024-10-01 15:54:03 -05:00
|
|
|
|
order: 4
|
2024-06-08 20:58:22 -05:00
|
|
|
|
}
|
|
|
|
|
},
|
2024-06-09 07:43:29 -05:00
|
|
|
|
collection: {
|
|
|
|
|
name: "posts",
|
|
|
|
|
limit: 10,
|
|
|
|
|
},
|
2024-06-08 20:58:22 -05:00
|
|
|
|
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/",
|
2024-06-08 20:58:22 -05:00
|
|
|
|
author: {
|
2025-03-02 11:27:20 -06:00
|
|
|
|
name: "Nyx Tutt"
|
2024-06-08 20:58:22 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
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
|
|
|
|
|
2024-07-16 15:45:08 -05:00
|
|
|
|
eleventyConfig.addPlugin(IdAttributePlugin, {
|
|
|
|
|
// by default we use Eleventy’s 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-04-24 17:04:24 -05:00
|
|
|
|
});
|
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",
|
2024-06-08 20:58:22 -05:00
|
|
|
|
"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: "/",
|
2018-01-22 08:17:48 -06:00
|
|
|
|
};
|