-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eleventy.js
86 lines (71 loc) · 2.71 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
const yaml = require("js-yaml");
const { DateTime } = require("luxon");
const syntaxHighlight = require("@11ty/eleventy-plugin-syntaxhighlight");
const htmlmin = require("html-minifier");
const markdownIt = require("markdown-it");
require('dotenv').config();
module.exports = function (eleventyConfig) {
// Disable automatic use of your .gitignore
eleventyConfig.setUseGitIgnore(false);
// Merge data instead of overriding
eleventyConfig.setDataDeepMerge(true);
// human readable date
eleventyConfig.addFilter("readableDate", (dateObj) => {
return DateTime.fromJSDate(dateObj, { zone: "utc" }).toFormat(
"dd LLL yyyy"
);
});
// Syntax Highlighting for Code blocks
eleventyConfig.addPlugin(syntaxHighlight);
// Markdown rendering options
const md = new markdownIt({
html: true,
});
// Add the new markdown filter (use when components render markdown)
eleventyConfig.addFilter("markdown", (content) => {
return md.render(content);
});
// To Support .yaml Extension in _data
// You may remove this if you can use JSON
eleventyConfig.addDataExtension("yaml", (contents) => yaml.load(contents));
// Copy Static Files to /_Site
eleventyConfig.addPassthroughCopy({
"./src/admin/config.yml": "./admin/config.yml",
"./node_modules/alpinejs/dist/cdn.min.js": "./static/js/alpine.js",
"./node_modules/prismjs/themes/prism-tomorrow.css": "./static/css/prism-tomorrow.css",
"./src/static/js/exchange-rate.js": "./static/js/exchange-rate.js",
});
// Copy Image Folder to /_site
eleventyConfig.addPassthroughCopy("./src/static/img");
// Copy favicon to route of /_site
eleventyConfig.addPassthroughCopy("./src/favicon.ico");
eleventyConfig.addPassthroughCopy("./src/apple-touch-icon.png");
eleventyConfig.addPassthroughCopy("./src/favicon-16x16.png");
eleventyConfig.addPassthroughCopy("./src/favicon-32x32.png");
eleventyConfig.addPassthroughCopy("./src/android-chrome-192x192.png");
eleventyConfig.addPassthroughCopy("./src/android-chrome-512x512.png");
// Minify HTML
eleventyConfig.addTransform("htmlmin", function (content, outputPath) {
// Eleventy 1.0+: use this.inputPath and this.outputPath instead
if (outputPath.endsWith(".html")) {
let minified = htmlmin.minify(content, {
useShortDoctype: true,
removeComments: true,
collapseWhitespace: true,
});
return minified;
}
return content;
});
eleventyConfig.addCollection("blogPosts", function(collectionApi) {
return collectionApi.getFilteredByTags("blog");
});
// Let Eleventy transform HTML files as nunjucks
// So that we can use .html instead of .njk
return {
dir: {
input: "src",
},
htmlTemplateEngine: "njk",
};
};