-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathspa-lite.config.js
91 lines (87 loc) · 2.15 KB
/
spa-lite.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
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
const app = {
title: 'Google I/O Extended Roadshow 2019 Philippines',
shortName: 'I/O 19 PH', // 12 characters max
description: 'Google I/O is an annual software developer-focused conference which features a keynote on the latest updates and announcements by Google. The conference hosts in-depth sessions focused on building web, mobile, and enterprise applications.',
sentry: 'https://[email protected]/1221172',
baseHref: '/',
startUrl: '/',
display: 'standalone',
orientation: 'any',
scope: '/',
twitter: '@gdgphilippines',
twitterCreator: '@tjmonsi',
image: 'https://ioextended.gdgph.org/data/images/landing-large.jpg',
gaId: 'UA-121115629-1'
};
const theme = {
themeColor: '#5b73fd',
backgroundColor: '#5b73fd',
favicon: '/assets/manifest/favicon.ico',
webApp: {
capable: 'yes',
statusBarStyle: 'black-translucent',
tapHighlight: 'no'
},
icons: [
{
src: '/assets/manifest/48x48.png',
type: 'image/png',
sizes: '48x48'
},
{
src: '/assets/manifest/72x72.png',
type: 'image/png',
sizes: '72x72'
},
{
src: '/assets/manifest/96x96.png',
type: 'image/png',
sizes: '96x96'
},
{
src: '/assets/manifest/144x144.png',
type: 'image/png',
sizes: '144x144'
},
{
src: '/assets/manifest/168x168.png',
type: 'image/png',
sizes: '168x168'
},
{
src: '/assets/manifest/192x192.png',
type: 'image/png',
sizes: '192x192'
},
{
src: '/assets/manifest/512x512.png',
type: 'image/png',
sizes: '512x512'
}
]
};
const fragments = {
'page-home': 'src/pages/page-home/index.js',
'page-location': 'src/pages/page-location/index.js',
'page-design-guide': 'src/pages/page-design-guide/index.js',
'page-not-found': 'src/pages/page-not-found/index.js'
};
const routes = [
{
route: '/',
page: 'page-home'
},
{
route: '/design-guide',
page: 'page-design-guide'
},
{
route: '/location/:id',
page: 'page-location'
},
{
route: 'no-page',
page: 'page-not-found'
}
];
module.exports = { app, theme, fragments, routes };