-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.ts
59 lines (57 loc) · 1.37 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
57
58
59
import { GatsbyConfig } from "gatsby";
const config: GatsbyConfig = {
trailingSlash: "always",
siteMetadata: {
title: `ReCAP Trier University`,
description: `Research project at Trier University that is funded by DFG and concerned with building an argumentation machine.`,
siteUrl: `https://recap.uni-trier.de`,
googleSiteVerification: "5J3ie7V600FTqQeFo9o6zKgcTMvNXkctPhKiABIdjzE",
},
plugins: [
// "gatsby-plugin-netlify",
"gatsby-plugin-image",
"gatsby-transformer-yaml",
"gatsby-plugin-sitemap",
"gatsby-transformer-remark",
{
resolve: "gatsby-plugin-manifest",
options: {
icon: "./src/assets/logo.png",
},
},
{
resolve: "gatsby-plugin-sharp",
options: {
defaults: {
formats: ["auto", "webp"],
placeholder: "blurred",
quality: 90,
},
},
},
"gatsby-transformer-sharp",
{
resolve: "gatsby-source-filesystem",
options: {
name: "data",
path: "./src/data/",
},
},
{
resolve: "gatsby-source-filesystem",
options: {
name: "assets",
path: "./src/assets/",
},
},
{
resolve: "gatsby-source-filesystem",
options: {
name: "content",
path: "./src/content/",
},
},
"@chakra-ui/gatsby-plugin",
],
};
export default config;