-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheleventy.config.js
54 lines (47 loc) · 1.32 KB
/
eleventy.config.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
const path = require('path');
const {calcFileHash} = require('./src/_utils/file');
const {bustCacheForUrl} = require('./src/_utils/url');
module.exports = eleventyConfig => {
eleventyConfig.addPassthroughCopy('src/!(_copy|_data|_includes|_layouts|_js|_styles|_utils)/**/*.{png,gif,jpg,svg}');
eleventyConfig.setServerOptions({
liveReload: true,
domDiff: true,
port: 8080,
watch: [],
showAllHosts: false,
https: {
// key: './localhost.key',
// cert: './localhost.cert',
},
encoding: 'utf-8',
showVersion: false,
});
const markdownIt = require('markdown-it');
const mdOptions = {
html: true,
breaks: true,
linkify: true
};
eleventyConfig.setLibrary('md', markdownIt(mdOptions));
const hashCache = {};
eleventyConfig.addFilter('bust', function (url) { // no arrow func here
const [urlPath] = url.split('?');
const filePath = path.join('build', urlPath);
if(!hashCache[filePath]) {
hashCache[filePath] = calcFileHash(filePath);
}
return bustCacheForUrl(url, hashCache[filePath]);
});
return {
dir: {
input: 'src',
data: '_data',
includes: '_includes',
layouts: '_layouts',
output: 'build'
},
templateFormats: ['njk', 'html', 'md'],
markdownTemplateEngine: 'njk',
htmlTemplateEngine: 'njk'
}
}