-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathgatsby-config.js
79 lines (79 loc) · 2.02 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
75
76
77
78
79
module.exports = {
siteMetadata: {
title: `Understanding Cohen's d`,
description: `A tool to understand Cohen's d standardized effect size`,
author: `Kristoffer Magnusson`,
twitter: `@krstoffr`,
version: '2.3.0',
lastUpdated: `2020-10-04`,
github: 'https://github.com/rpsychologist/cohend',
url: 'https://rpsychologist.com/d3/cohend/'
},
pathPrefix: `/d3/cohend`,
plugins: [
`gatsby-plugin-material-ui`,
`gatsby-transformer-remark`,
`gatsby-transformer-yaml`,
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
`gatsby-remark-images`,
`gatsby-plugin-react-helmet`,
{
resolve: `gatsby-plugin-mdx`,
options: {
extensions: ['.mdx', '.md'],
gatsbyRemarkPlugins: [
`gatsby-remark-images`,
{
resolve: 'gatsby-remark-prismjs',
options: {
classPrefix: 'language-',
aliases: {},
copy: true,
},
},
{
resolve: `gatsby-remark-katex`,
options: {
// Add any KaTeX options from https://github.com/KaTeX/KaTeX/blob/master/docs/options.md here
strict: `ignore`,
output: `html`,
},
},
],
}
},
{
resolve: `gatsby-plugin-google-analytics`,
options: {
trackingId: "UA-47065595-1",
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `src`,
path: `${__dirname}/content/`
}
},
{
resolve: 'gatsby-plugin-zopfli',
options: {
extensions: ['css', 'html', 'js', 'svg', 'json']
}
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: "Interpreting Cohen's d",
short_name: "Cohend",
start_url: "https://rpsychologist.com/d3/cohend/",
background_color: "#ffffff",
theme_color: "#ffffff",
display: "standalone",
icon: "src/assets/cohend-icon.png",
},
},
'gatsby-plugin-offline',
]
};