-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
61 lines (61 loc) · 1.78 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
/**
* @type {import('gatsby').GatsbyConfig}
*/
module.exports = {
siteMetadata: {
title: `Play Classic DOS Games Online - Retro Gaming Hub`,
siteUrl: `https://weplaydos.games`,
image: `/logo.gif`,
keywords: `weplaydos, play dos games, dos games, Classic DOS games, retro gaming, browser-based DOS games, DOS game collection, vintage computer games, old school PC games, 90s DOS games, free DOS games, weplaydos.games, MS-DOS games, online retro games, DOS emulation, play old games online`,
description: `Play DOS games online at WePlayDOS. Enjoy a vast collection of classic DOS games in your browser and relive the golden era of retro gaming.`,
icon: `/logo.gif`,
},
trailingSlash: 'always',
plugins: [
// "gatsby-plugin-google-gtag"
"gatsby-plugin-sass",
`gatsby-plugin-image`,
`gatsby-plugin-sharp`,
`gatsby-transformer-sharp`, // Needed for dynamic images
// "gatsby-plugin-sitemap",
{
resolve: 'gatsby-plugin-sitemap',
options: {
excludes: [
'/online/*/play/'
]
}
},
{
resolve: 'gatsby-plugin-manifest',
options: {
"icon": "src/images/logo.gif"
}
}, {
resolve: 'gatsby-source-filesystem',
options: {
"name": "images",
"path": "./src/images/",
ignore: [
`**/\.*`, // Ignore hidden files
`**/*_*`, // Ignore files with an underscore in their names
],
},
__key: "images"
},
{
resolve: `gatsby-plugin-mdx`,
// options: {
// gatsbyRemarkPlugins: [
// {
// resolve: `gatsby-remark-images`,
// options: {
// loading: 'lazy',
// withWebp: true,
// },
// },
// ],
// },
}
]
};