nulex/.eleventy.js

9 lines
331 B
JavaScript
Raw Permalink Normal View History

2023-08-22 14:15:54 +00:00
const { EleventyHtmlBasePlugin } = require("@11ty/eleventy");
2023-08-22 16:06:39 +00:00
const externalLinks = require("@aloskutov/eleventy-plugin-external-links");
2023-08-22 14:15:54 +00:00
module.exports = function (eleventyConfig) {
eleventyConfig.addPassthroughCopy("drip.css");
eleventyConfig.addPlugin(EleventyHtmlBasePlugin);
2023-08-22 16:06:39 +00:00
eleventyConfig.addPlugin(externalLinks);
2023-08-22 14:15:54 +00:00
};