-
Notifications
You must be signed in to change notification settings - Fork 28
/
gatsby-config.js
48 lines (48 loc) · 1.28 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
module.exports = {
pathPrefix: `/`,
siteMetadata: {
title: `Frameboi`,
siteUrl: `https://frame.dscnitrourkela.org`,
description: `Profile Picture Frame Generator for HackNITR 4.0 `,
canonicalUrl: `https://frame.dscnitrourkela.org`,
author: {
name: `Frameboi`,
description: `Profile Picture Frame Generator for HackNITR 4.0 `,
},
organisation: {
name: `DSC NIT Rourkela`,
url: `https://frame.dscnitrourkela.org`,
},
},
plugins: [
`gatsby-plugin-styled-components`,
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
`gatsby-plugin-react-helmet`,
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `HackNITR | Frameboi`,
short_name: `Frameboi`,
description: `Profile Picture Frame Generator for HackNITR 4.0 `,
start_url: '/',
background_color: '#17171d',
theme_color: '#ffffff',
display: 'standalone',
icons: [
{
src: '/android-chrome-192x192.png',
sizes: '192x192',
type: 'image/png',
},
{
src: '/android-chrome-512x512.png',
sizes: '512x512',
type: 'image/png',
},
],
},
},
`gatsby-plugin-robots-txt`,
],
};