-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
54 lines (54 loc) · 1.37 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
module.exports = {
siteMetadata: {
author: 'Laurence "DC5B" Lord',
defaultDescription:
"Laurence Lord is a creative developer specialising in websites and online businesses. This website shares my personal notes, lab experiments and key links.",
defaultTitle: 'Laurence "DC5B" Lord',
headline: "Creative Developer",
logo: "/logos/ll782-og.png",
ogLanguage: "en_GB",
siteLanguage: "en",
siteUrl: "https://www.laurencelord.co.uk",
titleAlt: 'Laurence "DC5B" Lord',
twitter: "@LL782",
},
plugins: [
"gatsby-plugin-image",
{
resolve: `gatsby-plugin-gatsby-cloud`,
options: {
headers: {
"/embeds/*": [
"Content-Security-Policy: frame-ancestors 'self' https://*.laurencelord.co.uk/",
"X-Frame-Options: SAMEORIGIN",
],
},
},
},
"gatsby-plugin-mdx",
"gatsby-plugin-react-helmet",
"gatsby-plugin-sharp",
{
resolve: `gatsby-plugin-sitemap`,
options: {
output: `/sitemap.xml`,
exclude: [`/embeds/*`],
},
},
{
resolve: "gatsby-plugin-theme-ui",
options: {
prismPreset: `prism`,
},
},
{
resolve: "gatsby-source-filesystem",
options: {
name: "notes",
path: `${__dirname}/content/notes`,
},
},
"gatsby-transformer-sharp",
],
flags: {},
};