-
Notifications
You must be signed in to change notification settings - Fork 3
/
gatsby-config.js
92 lines (92 loc) · 2.75 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
80
81
82
83
84
85
86
87
88
89
90
91
92
module.exports = {
siteMetadata: {
title: `Langua`,
subtitle: `A suite of language tools`,
description: `A suite of language tools.`,
author: `Ian A. Cook`,
authorURL: `https://github.com/nai888`,
appGhURL: `https://github.com/susurrus-llc/langua`,
canonical: `https://susurrus-llc.github.io/langua/`,
version: `0.4.5`,
toolInfo: {
gen: {
title: `Gen`,
link: `gen`,
description: `is a tool for automatically building a set of words based on arbitrary rules of phonotactics. This can be used to create a dummy vocabulary for linguistic experimentation, to generate words or names for a naming language in a work of fantasy or science fiction, or as the basis for building the vocabulary of a constructed language.`
},
morph: {
title: `Morph`,
link: `morph`,
description: `is a tool for modeling historical sound change according to arbitrary rules of phonetic change.`
},
deriv: {
title: `Deriv`,
link: `deriv`,
description: `is a tool for modeling word derivation based on a given list of lexemes and affixes.`
},
frequen: {
title: `Frequen`,
link: `frequen`,
description: `is a tool for analyzing phoneme frequencies in a given text.`
},
tree: {
title: `Tree`,
link: `tree`,
description: `is a tool for drawing and labeling syntax trees.`
},
lex: {
title: `Lex`,
link: `lex`,
description: `is a tool for building a lexicon or dictionary for a language and exporting it to various formats.`
}
}
},
pathPrefix: `/langua`,
plugins: [
`gatsby-plugin-react-helmet`,
{
resolve: `gatsby-plugin-sass`,
options: {
cssLoaderOptions: {
esModule: false,
modules: {
namedExport: false
}
}
}
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: `${__dirname}/src/images`
}
},
{
resolve: `gatsby-plugin-google-fonts`,
options: {
fonts: [
`Noto+Sans:400,400i,700,700i`,
`Noto+Serif:400,400i,700,700i&subset=greek,greek-ext,latin-ext`
]
}
},
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `Langua`,
short_name: `Langua`,
description: `A suite of language tools`,
lang: `en-us`,
start_url: `/`,
background_color: `#ffffff`,
theme_color: `#2f8f9d`,
display: `standalone`,
icon: `src/images/favicon.png` // This path is relative to the root of the site.
}
},
`gatsby-plugin-offline`
]
}