forked from maeligg/console.love
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eleventy.js
36 lines (31 loc) · 980 Bytes
/
.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 htmlmin = require("html-minifier");
module.exports = function(eleventyConfig) {
// Pass through
eleventyConfig.addPassthroughCopy("assets");
// Minify
eleventyConfig.addTransform("htmlmin", function(content, outputPath) {
if (outputPath.indexOf(".html") > -1) {
let minified = htmlmin.minify(content, {
useShortDoctype: true,
removeComments: true,
collapseWhitespace: true,
minifyCSS: true
});
return minified;
}
return content;
});
// Create and randomise "sites" collection
eleventyConfig.addCollection("sites", function(collection) {
console.log(typeof collection.getFilteredByGlob("./sites/*.md"));
return collection.getFilteredByGlob("./sites/*.md").sort(function() {
return 0.5 - Math.random();
});
});
eleventyConfig.addPassthroughCopy("favicon.ico");
// Return config settings
return {
markdownTemplateEngine: "njk",
passthroughFileCopy: true
};
};