-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
56 lines (55 loc) · 1.43 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
/**
* Configure your Gatsby site with this file.
*
* See: https://www.gatsbyjs.org/docs/gatsby-config/
*/
const path = require("path")
module.exports = {
siteMetadata: {
title: "George Utsin - Portfolio",
description: "Hi my name is George. I'm a coder by day and not coding by night.",
url: "https://www.georgeutsin.com", // No trailing slash allowed!
siteUrl: "https://www.georgeutsin.com", // No trailing slash allowed!
image: "/avatar.png", // Path to your image you placed in the 'static' folder
},
plugins: [
`gatsby-plugin-typescript`,
`gatsby-plugin-sass`,
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
`gatsby-transformer-remark`,
`gatsby-plugin-react-helmet`,
`gatsby-plugin-robots-txt`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: path.join(__dirname, `src`, `assets`, `images`),
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `projects`,
path: `${__dirname}/src/assets/markdown/projects`,
},
},
{
resolve: "gatsby-source-flickr",
options: {
api_key: process.env.FLICKR_API_KEY,
user_id: process.env.FLICKR_USER_ID
},
},
{
resolve: `gatsby-plugin-google-fonts`,
options: {
fonts: [
`montserrat\:400,700,900`,
`open sans`
],
display: 'swap'
}
},
],
}