-
Notifications
You must be signed in to change notification settings - Fork 21
/
gatsby-config.js
47 lines (47 loc) · 1.17 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
module.exports = {
siteMetadata: {
siteUrl: 'https://techstack-generator.vercel.app/',
title: 'Techstack Generator',
description: `animated techstack markdown/html generator`,
author: `shellboy`,
},
plugins: [
'gatsby-plugin-emotion',
'gatsby-plugin-image',
'gatsby-plugin-sitemap',
'gatsby-plugin-sharp',
'gatsby-transformer-sharp',
{
resolve: `gatsby-plugin-typescript`,
options: {
isTSX: true,
jsxPragma: `jsx`,
allExtensions: true,
},
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: 'Techstack-Generator',
short_name: 'Techstack-Generator',
start_url: '/',
icon: 'src/asset/favicon.png',
},
},
{
resolve: 'gatsby-plugin-robots-txt',
options: {
host: 'https://techstack-generator.vercel.app/',
sitemap: 'https://techstack-generator.vercel.app/sitemap.xml',
policy: [{ userAgent: '*', allow: '/' }],
},
},
{
resolve: `gatsby-plugin-google-fonts`,
options: {
fonts: [`Roboto`, `source sans pro\:300,400,400i,700`],
display: 'swap',
},
},
],
};