-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgatsby-config.js
More file actions
53 lines (53 loc) 路 1.24 KB
/
Copy pathgatsby-config.js
File metadata and controls
53 lines (53 loc) 路 1.24 KB
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
module.exports = {
siteMetadata: {
title: `Metodolog铆as de Desarrollo de Proyectos`,
siteUrl: `https://ruben35.github.io/Development-Methodologies-Web`,
description: `P谩gina web 馃寪 donde se incluye informaci贸n sobre diversas metodolog铆as de desarrollo de proyectos de tecnolog铆a 馃捇.`,
author: `@Ruben35`,
image: `/images/Social-Media-Image.jpg`,
},
pathPrefix: "/Development-Methodologies-Web",
plugins: [
"gatsby-plugin-image",
"gatsby-plugin-sharp",
"gatsby-transformer-sharp",
"gatsby-transformer-json",
{
resolve: "gatsby-source-filesystem",
options: {
name: "data",
path: "./src/assets",
},
__key: "data",
},
{
resolve: "gatsby-plugin-react-svg",
options: {
rule: {
include: /icons/,
},
},
},
{
resolve: "gatsby-plugin-manifest",
options: {
name: "Metodolog铆as de Desarrollo de Proyectos",
short_name: "Metodolog铆as Web",
start_url: "/",
id: "/",
lang: "es",
theme_color: "#FFBC25",
background_color: "#FFFEFA",
display: "standalone",
icon: "src/assets/logos/Favicon.svg",
crossOrigin: "use-credentials",
},
},
{
resolve: `gatsby-plugin-offline`,
options: {
precachePages: [`/`, `/Metodologias`],
},
},
],
}