Ryujinx-Website/gridsome.config.js

43 lines
958 B
JavaScript
Raw Normal View History

module.exports = {
siteName: 'Ryujinx',
2020-02-07 16:10:26 +00:00
siteUrl: 'https://ryujinx.org',
titleTemplate: 'Ryujinx - %s',
2020-02-08 15:59:15 +00:00
metadata: {
2021-03-07 09:27:55 +00:00
siteDescription: "Ryujinx is an open source Nintendo Switch emulator written in C# for Windows, Linux and macOS.",
2020-02-08 15:59:15 +00:00
siteKeywords: [
"ryujinx",
"switch",
"nintendo switch",
"emulator"
],
siteAuthor: "Ryujinx",
siteCopyright: "Ryujinx",
siteTwitter: "@RyujinxEmu",
coverImage: "/public/logo.png"
},
2020-02-08 17:28:41 +00:00
plugins: [
'gridsome-plugin-robots-txt',
{
use: '@gridsome/plugin-sitemap',
options: {
cacheTime: 0, // we don't want the sitemap to be cached!
exclude: [],
config: {}
}
2020-04-02 11:36:09 +00:00
},
{
use: '@gridsome/plugin-google-analytics',
options: {
id: 'UA-162558184-1'
}
},
2020-02-10 16:08:15 +00:00
],
css: {
loaderOptions: {
scss: {
// options here will be passed to sass-loader, nothing for now.
}
}
}
}