forked from DrHacknik/Ryujinx-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgridsome.config.js
42 lines (42 loc) · 958 Bytes
/
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
module.exports = {
siteName: 'Ryujinx',
siteUrl: 'https://ryujinx.org',
titleTemplate: 'Ryujinx - %s',
metadata: {
siteDescription: "Ryujinx is an open source Nintendo Switch emulator written in C# for Windows, Linux and macOS.",
siteKeywords: [
"ryujinx",
"switch",
"nintendo switch",
"emulator"
],
siteAuthor: "Ryujinx",
siteCopyright: "Ryujinx",
siteTwitter: "@RyujinxEmu",
coverImage: "/public/logo.png"
},
plugins: [
'gridsome-plugin-robots-txt',
{
use: '@gridsome/plugin-sitemap',
options: {
cacheTime: 0, // we don't want the sitemap to be cached!
exclude: [],
config: {}
}
},
{
use: '@gridsome/plugin-google-analytics',
options: {
id: 'UA-162558184-1'
}
},
],
css: {
loaderOptions: {
scss: {
// options here will be passed to sass-loader, nothing for now.
}
}
}
}