-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathgatsby-config.js
70 lines (70 loc) · 1.68 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
module.exports = {
pathPrefix: `/2022`,
siteMetadata: {
title: `PyConf Hyderabad 2022`,
description: `PyConf Hyderabad is one of the biggest regional conference in Hyderabad, after back to back
succesful events, Hyderabad Python group is back with 2022 Edition! PyConf Hyderabad
`,
twitterUsername: `@hydpython`,
image: `/images/icon.png`,
siteUrl: `https://pyconf.hydpy.org/2022`,
},
plugins: [
"gatsby-plugin-theme-ui",
"gatsby-plugin-sass",
"gatsby-plugin-image",
"gatsby-plugin-sitemap",
"gatsby-transformer-sharp",
{
resolve: "gatsby-plugin-manifest",
options: {
id: `/`,
name: `PyConf Hyderabad 2022`,
short_name: `PyConf 2022`,
start_url: `/`,
background_color: `#ffffff`,
display: `minimal-ui`,
icon: "src/images/icon.png",
},
},
"gatsby-plugin-mdx",
{
resolve: "gatsby-source-filesystem",
options: {
name: "misc",
path: "./src/misc/",
},
__key: "misc",
},
"gatsby-plugin-sharp",
"gatsby-transformer-sharp",
{
resolve: "gatsby-source-filesystem",
options: {
name: "pages",
path: "./src/pages/",
},
__key: "pages",
},
{
resolve: "gatsby-source-filesystem",
options: {
name: "assets",
path: `${__dirname}/src/assets/`,
},
__key: "assets",
},
{
resolve: `gatsby-plugin-google-gtag`,
options: {
trackingIds: [
"G-3KN0M0HRMD",
],
pluginConfig: {
// Puts tracking script in the head instead of the body
head: true,
},
},
},
],
};