-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
74 lines (74 loc) · 1.81 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
module.exports = {
siteMetadata: {
title: 'Royce Townsend',
description: 'Royce Townsend. Perth, Western Australia.',
siteUrl: process.env.SITE_URL || 'http://localhost:8000',
},
plugins: [
'gatsby-plugin-root-import', // map src/ to src/
'gatsby-plugin-theme-ui',
'gatsby-theme-style-guide',
'gatsby-plugin-sharp',
'gatsby-plugin-react-helmet',
{
resolve: 'gatsby-plugin-manifest',
options: {
icon: 'content/assets/icon.svg',
},
},
{
resolve: `gatsby-plugin-mdx`,
options: {
extensions: [`.mdx`, `.md`],
gatsbyRemarkPlugins: [
{
resolve: `gatsby-remark-images`,
options: {
maxWidth: 896,
linkImagesToOriginal: false,
},
},
{ resolve: `gatsby-remark-slug` },
{ resolve: `gatsby-remark-copy-linked-files` },
{ resolve: `gatsby-remark-smartypants` },
],
defaultLayouts: {
default: require.resolve('./src/components/layout.tsx'),
},
},
},
'gatsby-transformer-sharp',
{
resolve: 'gatsby-source-filesystem',
options: {
name: 'pages',
path: './src/pages/',
},
__key: 'pages',
},
{
resolve: `gatsby-source-filesystem`,
options: {
path: `content/posts`,
name: `content/posts`,
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
path: `content/assets`,
name: `content/assets`,
},
},
{
resolve: `gatsby-plugin-s3`,
options: {
bucketName: 'roycetownsend.com',
region: 'us-east-1',
protocol: 'https',
hostname: 'roycetownsend.com',
generateRedirectObjectsForPermanentRedirects: true,
},
},
],
};