-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.json
57 lines (57 loc) · 1.36 KB
/
config.json
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
{
"locals": {
"url": "https://blog.cssconf.eu",
"twitterHandle": "@CSSconfeu",
"email": "contact@cssconf.eu",
"name": "Blog — CSSconf EU",
"owner": "CSSconf EU Team",
"description": "CSSconf EU is conference dedicated to all those passionate about design, CSS, and the web. For the community, by the community.",
"buyTicketsLink": "https://ti.to/cssconfeu/cssconfeu-2019/",
"cssConfLink": "https://2019.cssconf.eu"
},
"filenameTemplate": "/:year/:month/:day/:title/index.html",
"plugins": [
"./plugins/paginator.coffee",
"./plugins/postcss.js",
"./plugins/nunjucks.js",
"./plugins/svg.js"
],
"require": {
"moment": "moment",
"_": "underscore",
"typogr": "typogr"
},
"markdown": {
"smartLists": true,
"smartypants": true
},
"nunjucks": {
"filterdir": "./templates/filters",
"filters": [
"log",
"sortObjects",
"splitString",
"filterObjects",
"joinObjects"
]
},
"postcss": {
"entrypoint": "css/main.css",
"from": "contents/css/main.css",
"plugins": [
"postcss-import",
{
"path": "postcss-custom-properties",
"params": {
"preserve": true
}
},
"postcss-nested",
"postcss-media-minmax",
"postcss-custom-media",
"autoprefixer",
"css-mqpacker",
"cssnano"
]
}
}