aboutsummaryrefslogtreecommitdiff
path: root/eleventy.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'eleventy.config.js')
-rw-r--r--eleventy.config.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/eleventy.config.js b/eleventy.config.js
index f187c91..3d8999f 100644
--- a/eleventy.config.js
+++ b/eleventy.config.js
@@ -1,10 +1,13 @@
-import { InputPathToUrlTransformPlugin } from "@11ty/eleventy";
+import { EleventyRenderPlugin, InputPathToUrlTransformPlugin } from "@11ty/eleventy";
import pluginRss from "@11ty/eleventy-plugin-rss";
import syntaxHighlight from "@11ty/eleventy-plugin-syntaxhighlight";
+import pluginWebc from "@11ty/eleventy-plugin-webc";
import anchor from "markdown-it-anchor";
export default function (eleventyConfig) {
+ eleventyConfig.addPlugin(EleventyRenderPlugin);
eleventyConfig.addPlugin(InputPathToUrlTransformPlugin);
+ eleventyConfig.addPlugin(pluginWebc);
eleventyConfig.addPlugin(syntaxHighlight, {
errorOnInvalidLanguage: true,