-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.js
47 lines (39 loc) · 1.22 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
import isDev from 'bonn/utils/isDev'
import processEnvExists from 'bonn/utils/processEnvExists'
export {
componentPages,
composablePages,
githubActionPages,
nodePages,
nuxtConfigPages,
nuxtHeadPages,
// nuxtPluginPages,
scssPages,
storePages,
styledComponentPages,
utilPages,
vercelPages,
vercelEndpointPages
} from './pages.js'
// Meta data
export const meta = {
author: 'Jerry Jäppinen',
title: 'Bonn',
tagline: 'Develop faster',
longTitle: 'Bonn - Develop faster',
description: 'Utility, style and component library for web development.',
twitterUsername: 'jerryjappinen',
mainColor: '#ffffff', // '#21324b'
accentColor: '#0052cd'
}
// Paths
export const host = (processEnvExists() ? process.env.BASE_URL : null) || isDev()
? 'http://localhost:3000'
: 'https://bonn.vercel.app'
// Demo space on Contentful (followgaming.live)
export const contentfulSpaceId = 'mytckhnubswe'
export const contentfulAccessToken = 'Ql1bv2l12RYe9o8Z8hqrJX5-puWKZesCVjJgiD-hd-4'
// Demo space on Hygraph
export const hygraphApiUrl = 'https://api-eu-west-2.hygraph.com/v2/cl7n4zm4t28ec01uh0oum04sc/master'
export const githubUrl = 'https://github.com/jerryjappinen/bonn'
export const npmUrl = 'https://npmjs.org/bonn'