-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
116 lines (116 loc) · 2.66 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
module.exports = {
siteMetadata: {
title: 'Front-end developer',
author: 'Dan Cormier',
description: 'Front-end developer working for TED from Florida.',
location: 'Florida',
siteUrl: 'https://dancormier.com/',
social: [
{
type: 'twitter',
url: 'https://twitter.com/dancormier',
name: 'dancormier',
},
{
type: 'github',
url: 'https://github.com/dancormier',
name: 'dancormier',
},
{
type: 'linkedin',
url: 'https://linkedin.com/in/dancormier',
name: 'dancormier',
},
{
type: 'resume',
url:
'https://docs.google.com/document/d/1XcjhIYcCvxCqTJQaYUWsokPwOX4lrHoD9FEq519urXM/edit?usp=sharing',
name: "Dan Cormier's resume",
},
{
type: 'email',
url: 'mailto:[email protected]',
name: '[email protected]',
},
],
workplace: {
name: 'TED',
url: 'https://ted.com/',
},
},
plugins: [
'gatsby-plugin-fontawesome-css',
'gatsby-plugin-netlify-cms',
'gatsby-plugin-offline',
'gatsby-plugin-react-helmet',
'gatsby-plugin-theme-ui',
'gatsby-plugin-sharp',
'gatsby-plugin-typescript',
'gatsby-transformer-sharp',
'gatsby-transformer-remark',
{
resolve: 'gatsby-plugin-alias-imports',
options: {
alias: {
components: 'src/components',
},
extensions: [],
},
},
{
resolve: 'gatsby-plugin-eslint',
options: {
test: /\.js$|\.jsx$|\.ts$|\.tsx$/,
exclude: /(node_modules|.cache|public)/,
stages: ['develop'],
options: {
emitWarning: true,
failOnError: false,
},
},
},
{
resolve: 'gatsby-plugin-google-analytics',
options: {
trackingId: 'UA-15028625-1',
},
},
{
resolve: 'gatsby-plugin-manifest',
options: {
name: 'Gatsby Starter Blog',
short_name: 'GatsbyJS',
start_url: '/',
icon: 'content/assets/avatar.jpg',
},
},
{
resolve: 'gatsby-plugin-web-font-loader',
options: {
google: {
families: ['Inter:400,400i,700', 'Fredoka One'],
},
},
},
{
resolve: 'gatsby-source-filesystem',
options: {
path: `${__dirname}/content/assets`,
name: 'assets',
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `content`,
path: `${__dirname}/content`,
},
},
{
resolve: 'gatsby-theme-style-guide',
options: {
basePath: '/design-system',
},
},
],
}