-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.eleventy.js
173 lines (157 loc) · 4.64 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
const fs = require('fs')
require('dotenv').config()
const pluginRss = require('@11ty/eleventy-plugin-rss')
const pluginNavigation = require('@11ty/eleventy-navigation')
const markdownIt = require('markdown-it')
const filters = require('./utils/filters')
const transforms = require('./utils/transforms')
const shortcodes = require('./utils/shortcodes')
const svgsprite = require('./utils/svgsprite')
const syntaxHighlight = require("@11ty/eleventy-plugin-syntaxhighlight");
module.exports = function (eleventyConfig) {
/**
* Add plugins
*
* @link https://www.11ty.dev/docs/plugins/
*/
eleventyConfig.addPlugin(pluginRss)
eleventyConfig.addPlugin(pluginNavigation)
eleventyConfig.addPlugin(syntaxHighlight, {
alwaysWrapLineHighlights: true,
});
/**
* Add filters
*
* @link https://www.11ty.io/docs/filters/
*/
Object.keys(filters).forEach((filterName) => {
eleventyConfig.addFilter(filterName, filters[filterName])
})
/**
* Add Transforms
*
* @link https://www.11ty.io/docs/config/#transforms
*/
Object.keys(transforms).forEach((transformName) => {
eleventyConfig.addTransform(transformName, transforms[transformName])
})
/**
* Add shortcodes
*
* @link https://www.11ty.io/docs/shortcodes/
*/
Object.keys(shortcodes).forEach((shortcodeName) => {
eleventyConfig.addShortcode(shortcodeName, shortcodes[shortcodeName])
})
/**
* Add async shortcodes
*
* @link https://www.11ty.dev/docs/languages/nunjucks/#asynchronous-shortcodes
*/
eleventyConfig.addNunjucksAsyncShortcode('svgsprite', svgsprite)
/**
* Add custom watch targets
*
* @link https://www.11ty.dev/docs/config/#add-your-own-watch-targets
*/
eleventyConfig.addWatchTarget('./src/assets')
eleventyConfig.addWatchTarget('./tailwind.config.js')
/**
* Passthrough file copy
*
* @link https://www.11ty.io/docs/copy/
*/
eleventyConfig.addPassthroughCopy({ 'src/assets/scripts/sw.js': 'sw.js' })
eleventyConfig.addPassthroughCopy({
'src/assets/scripts/prism.js': 'prism.js',
})
eleventyConfig.addPassthroughCopy({
'src/assets/styles/prism.css': 'prism.css',
})
eleventyConfig.addPassthroughCopy('src/assets/images')
eleventyConfig.addPassthroughCopy('src/assets/fonts')
eleventyConfig.addPassthroughCopy('src/site.webmanifest')
eleventyConfig.addPassthroughCopy('src/robots.txt')
/**
* Set custom markdown library instance
*
* @link https://www.11ty.dev/docs/languages/liquid/#optional-set-your-own-library-instance
*/
eleventyConfig.setLibrary(
'md',
markdownIt({
html: true,
breaks: true,
linkify: true,
})
)
/**
* Add layout aliases
*
* @link https://www.11ty.dev/docs/layouts/#layout-aliasing
*/
eleventyConfig.addLayoutAlias('base', 'base.njk')
eleventyConfig.addLayoutAlias('page', 'page.njk')
/**
* Opts in to a full deep merge when combining the Data Cascade.
*
* @link https://www.11ty.dev/docs/data-deep-merge/#data-deep-merge
*/
eleventyConfig.setDataDeepMerge(true)
/**
* Override BrowserSync Server options
*
* @link https://www.11ty.dev/docs/config/#override-browsersync-server-options
*/
eleventyConfig.setBrowserSyncConfig({
notify: true,
snippetOptions: {
rule: {
match: /<\/head>/i,
fn: function (snippet, match) {
return snippet + match
},
},
},
// Set local server 404 fallback
callbacks: {
ready: function (err, browserSync) {
const content_404 = fs.readFileSync('dist/404/index.html')
browserSync.addMiddleware('*', (req, res) => {
// Provides the 404 content without redirect.
res.write(content_404)
res.end()
})
},
},
})
eleventyConfig.addCollection('blogPosts', function (collectionApi) {
// get blog posts sorted by publication date
return collectionApi.getFilteredByTags('blogPost').sort(function (a, b) {
return (
new Date(b.data.post.publishedAt) - new Date(a.data.post.publishedAt)
)
})
})
eleventyConfig.addCollection('jobListings', function (collectionApi) {
// get blog posts sorted by publication date
return collectionApi.getFilteredByTags('jobListing').sort(function (a, b) {
return (
new Date(b.data.jobListing.publishedAt) - new Date(a.data.jobListing.publishedAt)
)
})
})
return {
dir: {
input: 'src',
output: 'dist',
layouts: 'layouts',
includes: 'includes',
data: 'data',
},
passthroughFileCopy: true,
templateFormats: ['html', 'njk', 'md', '11ty.js'],
htmlTemplateEngine: 'njk',
markdownTemplateEngine: 'njk',
}
}