-
Notifications
You must be signed in to change notification settings - Fork 6
/
gridsome.config.js
148 lines (145 loc) · 3.79 KB
/
gridsome.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
const i18nPlugin = {
use: "gridsome-plugin-i18n",
options: {
defaultLocale: "en",
locales: ["en", "es", "jp", "he", "zh-Hant-TW", "ko-KR"],
pathAliases: {
"zh-Hant-TW": "zh-tw",
"ko-KR": "ko",
},
messages: {
es: require("./src/locales/es.json"),
jp: require("./src/locales/jp.json"),
},
rewriteDefaultLanguage: false,
},
};
const optionalPlugins = [];
const isI18nEnabled = process.env.ENABLE_I18N === "true" || false;
if (isI18nEnabled) {
optionalPlugins.push(i18nPlugin);
}
module.exports = {
siteName: "Secret Network",
siteUrl: "http://scrt.network/",
siteDescription:
"Secret Network is an open-source protocol that performs computations on encrypted data, bringing privacy to smart contracts and public blockchains.",
titleTemplate: "%s",
plugins: [
{
use: "@gridsome/vue-remark",
options: {
typeName: "Content",
baseDir: "./content",
path: "/",
template: "./src/templates/Content.vue",
},
},
{
use: "@gridsome/vue-remark",
options: {
baseDir: "./docs",
pathPrefix: "/docs",
typeName: "Doc",
template: "./src/templates/Docs.vue",
plugins: ["@gridsome/remark-prismjs"],
},
},
{
use: "@gridsome/source-ghost",
options: {
typeName: "Ghost",
baseUrl: process.env.GHOST_API_URL,
contentKey: process.env.GHOST_API_KEY,
},
},
{
use: "@stakeordie/source-strapi",
options: {
isStrapiV4: process.env.IS_STRAPI_V4,
apiURL: process.env.GRIDSOME_STRAPI_URL,
queryLimit: 1000, // Defaults to 100
pageSize: 1000,
pluralizeOverrides: {
"cool-stuff": "cool-stuff-plural",
},
contentTypes: [
"announcement", //
"external-media", //
"contributor", //
"ecosystem-dapp", //
"ecosystem-nft", //
"ecosystem-partner", //
"ecosystem-validator", //
"nft", //
"cool-stuff", //
"tool-and-wallet", //
"exchange", //
"international-community", //
"card-grid-header", //
"nav-item", //
"page", //
"service-bot", //
"service-bridge", //
"service-cex", //
"service-dex", //
"service-wallet", //
"service-website", //
"developer-pathway", //
"scrt-buying-option", //
"upcoming-event", //
],
localizedTypes: [],
singleTypes: [
"alert-bar",
"home-announcement",
"about-subpage",
"agent-landing-brochure",
"agent-landing-email-form",
"agent-landing-hero",
"agent-landing-intro-row",
"nav-header",
"ecosystem-roadmap",
"services-alert",
"summit",
"summit-agenda",
],
// Possibility to login with a Strapi user,
// when content types are not publicly available (optional).
loginData: {
identifier: "",
password: "",
},
},
},
{
use: "@gridsome/plugin-sitemap",
},
{
use: "@gridsome/plugin-google-analytics",
options: {
id: "UA-173950488-3",
disabled: false //set to true when enable all cookie tracking
},
},
],
templates: {
GhostPost: "/blog/:slug",
},
transformers: {
remark: {
externalLinksTarget: "_blank",
externalLinksRel: ["nofollow", "noopener", "noreferrer"],
anchorClassName: "icon icon-link",
plugins: ["gridsome-plugin-remark-prismjs-all"],
},
},
chainWebpack: (config) => {
config.resolve.alias.set("@images", "@/../content/img");
},
configureWebpack: {
resolve: {
symlinks: false,
},
},
};