-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
57 lines (54 loc) · 1.97 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
/**
* Configure your Gatsby site with this file.
*
* See: https://www.gatsbyjs.com/docs/gatsby-config/
*/
/** IMPORTANT! Any change to this file requires restarting the development server for changes to
* take effect. Exit the server and run `gatsby develop` in the terminal to do this.
*/
// TODO: consider building URL pathways into siteMetadata
module.exports = {
/* Your site config here */
plugins: [
'gatsby-plugin-react-helmet', // customize metadata in website's <head> component
{
resolve: 'gatsby-plugin-sharp',
options: {
icon: `src/images/favicons/favicon-16x16.png`
}
},
`gatsby-plugin-image`,
'gatsby-transformer-sharp',
'gatsby-transformer-remark', // creates a graphQL interface for markdown files
{
resolve: `gatsby-source-filesystem`, // loads data from .txt and .md files to website
options: {
name: `projects`, // name of this instance of the plugin
path: `${__dirname}/src/data/projects/` // directory this plugin will access
},
},
{
resolve: `gatsby-source-filesystem`, // loads data from .txt and .md files to website
options: {
name: `images`, // name of this instance of the plugin
path: `${__dirname}/src/images/` // directory this plugin will access
},
},
{
resolve: `gatsby-source-filesystem`, // loads data from .txt and .md files to website
options: {
name: `resources`, // name of this instance of the plugin
path: `${__dirname}/src/data/resources/` // directory this plugin will access
},
}
],
siteMetadata: {
title: 'Emily Smith | Software Engineer',
author: 'Emily Drake Smith',
description: 'Personal Website and Portfolio',
long_description: "I'm Emily Drake Smith, a full-stack software engineer currently based in Boston. Check out my website to learn more about me, view my portfolio of works, and get in touch.",
copyright: '© 2022 Emily Smith',
email: '[email protected]',
url: 'https://emilysmith.tech'
}
}