-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eleventy.js
36 lines (31 loc) · 1.19 KB
/
.eleventy.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
const eleventyNavigationPlugin = require("@11ty/eleventy-navigation");
const pluginSyntaxHighlight = require("@11ty/eleventy-plugin-syntaxhighlight");
module.exports = function (eleventyConfig) {
eleventyConfig.addPlugin(eleventyNavigationPlugin);
eleventyConfig.addPlugin(pluginSyntaxHighlight);
eleventyConfig.addPassthroughCopy('src/css');
eleventyConfig.addPassthroughCopy('src/img');
eleventyConfig.setDataDeepMerge(true);
eleventyConfig.addLayoutAlias("base", "layouts/base.njk");
eleventyConfig.addCollection('articles', collection => {
return collection.getFilteredByGlob('src/articles/*.md');
});
eleventyConfig.addCollection('lists', collection => {
return collection.getFilteredByGlob('src/lists/*.md');
});
return {
dir: {
input: "src/",
output: "dist",
includes: "_includes",
data: "_data"
},
markdownTemplateEngine: "liquid",
htmlTemplateEngine: "njk",
dataTemplateEngine: "njk",
templateFormats: ["html", "njk", "md"],
passthroughFileCopy: true,
templateEngineOverride: "njk",
alwaysWrapLineHighlights: false
};
};