-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathconfig.js
50 lines (49 loc) · 1.14 KB
/
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
import pkg from "./package.json" with { type: "json" };
export default {
data: {
articles: "articles.json",
books: "books.json",
links: "links.json",
projects: "projects.json",
statuses: "statuses.json",
},
dir: {
data: "data/",
dest: "dist/",
metadata: "metadata/",
partial: "template/partials/",
static: "static/",
template: "template/",
},
domain: "hail2u.net",
email: "hail2u@gmail.com",
encoding: "UTF-8",
favicon: "favicon.svg",
feed: "feed",
file: {
draft: "drafts.html",
icon: "static/favicon.svg",
preview: "preview.html",
statusLog: "data/statuses/log.html",
},
fullname: "Kyo Nagashima",
github: "hail2u",
lang: "ja",
licenseName: "Creative Commons (表示)",
licenseURL: "https://creativecommons.org/licenses/by/4.0/",
metadata: {
article: "blog/article.json",
},
name: pkg.name,
region: "JP",
scheme: "https",
shimei: "ながしまきょう",
siteTitle: "Hail2u",
template: {
article: "blog/_article.html.mustache",
draft: "_draft.html.mustache",
old: "blog/_old.html.mustache",
},
twitter: "hail2u_",
version: pkg.version,
};