-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.ts
56 lines (54 loc) · 1.38 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
49
50
51
52
53
54
55
56
import type { GatsbyConfig } from "gatsby";
const config: GatsbyConfig = {
siteMetadata: {
title: "Building a Better World - Matt Rigg",
description:
"Matt Rigg is a software engineer and entrepreneur based in Seattle who is using his skills to combat the climate crisis.",
siteUrl: `https://mattrigg.dev`,
},
graphqlTypegen: true,
trailingSlash: "always",
plugins: [
"gatsby-plugin-postcss",
"gatsby-plugin-image",
"gatsby-plugin-sharp",
"gatsby-transformer-sharp",
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: `${__dirname}/src/images`,
},
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: "Matt Rigg",
short_name: "Matt Rigg",
start_url: "/",
display: "minimal-ui",
icon: "src/images/favicon.png",
},
},
{
resolve: `gatsby-plugin-google-gtag`,
options: {
trackingIds: ["G-JHW7QZX4TF"],
},
},
{
resolve: `gatsby-plugin-s3`,
options: {
acl: null,
bucketName: "mattrigg-portfolio",
generateRedirectObjectsForPermanentRedirects: true,
generateRoutingRules: false,
hostname: "mattrigg.dev",
protocol: "https",
region: "us-west-2",
removeNonexistentObjects: true,
},
},
],
};
export default config;