-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.ts
48 lines (48 loc) · 1.31 KB
/
gatsby-config.ts
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 = {
siteMetadata: {
title: `Charlie Henin Full Stack Developer Node.js React Toulouse`,
description: `This is the personal website of Charlie Henin, Full Stack Developer Node.js React based in Toulouse. I love building services using Javascript technologies.`,
author: `kimchicharlie`,
siteUrl: `https://www.charliehenin.com`,
},
plugins: [
`gatsby-plugin-react-helmet`,
`gatsby-plugin-robots-txt`,
`gatsby-plugin-styled-components`,
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `gatsby-starter-default`,
short_name: `starter`,
start_url: `/`,
background_color: `#663399`,
theme_color: `#663399`,
display: `minimal-ui`,
icon: `static/images/charlie-icon.png`,
},
},
{
resolve: `gatsby-plugin-alias-imports`,
options: {
alias: {
'@components': 'src/components',
'@views': 'src/views',
'@pages': 'src/pages',
'@images': 'static/images',
'@icons': 'static/icons',
'@files': 'static/files',
'@content': 'src/content',
},
extensions: [],
},
},
{
resolve: 'gatsby-plugin-react-svg',
options: {
rule: {
include: /static/,
},
},
},
],
};