-
Notifications
You must be signed in to change notification settings - Fork 5
/
gatsby-config.js
86 lines (86 loc) · 2.32 KB
/
gatsby-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
module.exports = {
siteMetadata: {
title: `PiterJS conf 2019`,
description: `PiterJS - сообщество c берегов Невы, проводим ежемесячные митапы вокруг языка JavaScript и всего, что с ним связано. Мы помогаем знаниям быть бесплатными и свободными. Организуем ежемесячные встречи разработчиков для распространения знаний и обмена опытом, рассказываем о боли и кайфе JavaScript-программирования.`,
image: '/promo.jpg',
url: 'https://conf.piterjs.org/',
author: `@piterjs`,
},
plugins: [
`gatsby-plugin-react-helmet`,
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
`gatsby-transformer-json`,
{
resolve: `gatsby-source-filesystem`,
options: {
path: `./static/data/`,
},
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `PiterJS conf 2019`,
short_name: `PiterJS conf 2019`,
start_url: `/`,
background_color: `#663399`,
theme_color: `#663399`,
display: `minimal-ui`,
icons: [
{
src: '/logo/android-chrome-192x192.png',
sizes: '192x192',
type: 'image/png',
},
{
src: '/logo/android-chrome-512x512.png',
sizes: '512x512',
type: 'image/png',
},
],
},
},
`gatsby-plugin-typescript`,
`gatsby-plugin-tslint`,
{
resolve: `gatsby-plugin-react-svg`,
options: {
rule: {
include: /assets/, // See below to configure properly
},
},
},
{
resolve: `gatsby-plugin-emotion`,
options: {
sourceMap: false,
autoLabel: "process.env.NODE_ENV !== 'production'",
labelFormat: '[local]',
cssPropOptimization: true,
},
},
{
resolve: "gatsby-plugin-preconnect",
options: {
domains: [
"https://www.google-analytics.com"
]
}
},
// this (optional) plugin enables Progressive Web App + Offline functionality
// To learn more, visit: https://gatsby.dev/offline
// {
// resolve: `gatsby-plugin-offline`,
// options: {
// cacheId: 'gatsby-plugin-offline-0',
// },
// },
`gatsby-plugin-remove-serviceworker`,
{
resolve: 'gatsby-plugin-google-analytics',
options: {
trackingId: 'UA-97990001-2',
},
},
],
};