-
Notifications
You must be signed in to change notification settings - Fork 4
/
gatsby-config.js
49 lines (47 loc) · 1.19 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
require("dotenv").config({
path: `.env.${process.env.NODE_ENV}`,
});
const pws = process.env.PW
? JSON.parse(process.env.PW).map((pw) => Buffer.from(pw).toString("base64"))
: [];
module.exports = {
siteMetadata: {
siteTitle: "Kristoffer Hedstrom",
siteUrl: "https://k-create.com",
url: "https://k-create.com",
name: "Kristoffer Hedstrom",
email: "hello@k-create.com",
segment: "KrpuBOMB62nTKrcoFBpMoZQEKKIJllxU",
description:
"Website for Kristoffer Hedstrom: Swedish Interactive designer and developer currently in Switzerland.",
twitter: "@_kris",
shareImage: "https://k-create.com/images/about/shakey-0.gif",
siteName: "k-create.com",
},
plugins: [
"gatsby-plugin-emotion",
"gatsby-plugin-typescript",
"gatsby-plugin-sass",
"gatsby-transformer-javascript-frontmatter",
{
resolve: "gatsby-source-filesystem",
options: {
name: "pages",
path: `${__dirname}/src/pages/`,
},
},
{
resolve: "gatsby-plugin-sitemap",
options: {
output: "/",
},
},
{
resolve: "gatsby-theme-kcreate-password",
options: {
pws,
paths: [],
},
},
],
};