-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eleventy.js
executable file
·74 lines (63 loc) · 1.95 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
const pluginRss = require('@11ty/eleventy-plugin-rss')
const pluginPWA = require('eleventy-plugin-pwa')
const markdownIt = require('markdown-it')
const markdownItAnchor = require('markdown-it-anchor')
const filters = require('./eleventy/filters.js')
const transforms = require('./eleventy/transforms.js')
const workboxOptions = {
cacheId: 'emergency-site',
swDest: './dist/sw.js',
globPatterns: ['**/*.html', 'static/scripts/offline.js'],
globIgnores: ['admin/**/*', '404/**/*'],
importScripts: ['/static/scripts/worker.js'],
skipWaiting: false
}
require('dotenv').config()
module.exports = function(config) {
// Plugins
config.addPlugin(pluginRss)
config.addPlugin(pluginPWA, workboxOptions)
// Filters
Object.keys(filters).forEach(filterName => {
config.addFilter(filterName, filters[filterName])
})
// Transform
Object.keys(transforms).forEach(transformName => {
config.addTransform(transformName, transforms[transformName])
})
// Markdown
const mdlib = markdownIt({
html: true,
breaks: true,
linkify: true,
typographer: true
}).use(markdownItAnchor, {
permalink: true,
permalinkClass: 'anchor',
permalinkSymbol: '#'
})
config.setLibrary('md', mdlib)
// Layouts
config.addLayoutAlias('base', 'base.njk')
config.addLayoutAlias('post', 'post.njk')
// Pass-through files
config.addPassthroughCopy('admin')
config.addPassthroughCopy('src/static')
config.addPassthroughCopy('src/robots.txt')
// Deep-Merge
config.setDataDeepMerge(true)
// Base Config
return {
dir: {
input: 'src',
output: 'dist',
includes: 'includes',
layouts: 'layouts',
data: 'data'
},
templateFormats: ['njk', 'md'],
htmlTemplateEngine: 'njk',
markdownTemplateEngine: 'njk',
passthroughFileCopy: true
}
}