-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathconfig.js
37 lines (34 loc) · 942 Bytes
/
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
const title = `Responsive Components`;
const repo = `responsive-components`;
const url = `https://philipwalton.github.io/${repo}/`
const desc = `a modern approach to styling elements ` +
`based on the size of their container`;
const authorUrl = `https://philipwalton.com`;
const articleUrl = `${authorUrl}/articles/` +
`responsive-components-a-solution-to-the-container-queries-problem/`;
const repoUrl = `https://github.com/philipwalton/${repo}`;
const publicPath = `/${repo}/`;
const publicDir = `${repo}`;
const publicStaticDir = `${repo}/static`;
const publicStaticPath = `/${repo}/static/`;
const manifestFileName = `revisioned-asset-manifest.json`;
const shareInfo = {
url: url,
text: `${title}: ${desc}`,
via: `philwalton`,
};
module.exports = {
title,
repo,
url,
desc,
authorUrl,
articleUrl,
repoUrl,
publicPath,
publicDir,
publicStaticDir,
publicStaticPath,
manifestFileName,
shareInfo,
};