You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: gatsby-config.js
+17-13
Original file line number
Diff line number
Diff line change
@@ -2,10 +2,17 @@ module.exports = {
2
2
pathPrefix: "/coderbunker.ca",
3
3
siteMetadata: {
4
4
title: `Coderbunker Canada`,
5
-
author: `Carms Ng`,
6
-
description: `Coderbunker Canada Website`,
5
+
author: `@Carms-dev`,
6
+
description: `Coderbunker est une communauté internationale de passionnés de développement logiciel. Nous fonctionnons sur une base de budget d'ingénierie mensuels prépayés sur lesquels nous recrutons des équipes formées de talents flexibles qui participent activement dans la construction d'une communauté qui les rends heureux.`,
7
7
},
8
8
plugins: [
9
+
`gatsby-transformer-json`,
10
+
{
11
+
resolve: `gatsby-source-filesystem`,
12
+
options: {
13
+
path: `${__dirname}/src/assets/content`,
14
+
},
15
+
},
9
16
`gatsby-plugin-postcss`,
10
17
`gatsby-plugin-styled-components`,
11
18
`gatsby-plugin-react-helmet`,
@@ -17,6 +24,13 @@ module.exports = {
17
24
path: `${__dirname}/src/assets/images`,
18
25
},
19
26
},
27
+
{
28
+
resolve: `gatsby-source-filesystem`,
29
+
options: {
30
+
name: `assets`,
31
+
path: `${__dirname}/src/assets`,
32
+
},
33
+
},
20
34
{
21
35
resolve: `gatsby-source-filesystem`,
22
36
options: {
@@ -29,19 +43,9 @@ module.exports = {
29
43
{
30
44
resolve: `gatsby-plugin-manifest`,
31
45
options: {
32
-
name: `gatsby-starter-default`,
33
-
short_name: `starter`,
34
-
start_url: `/`,
35
-
background_color: `#663399`,
36
-
theme_color: `#663399`,
37
-
display: `minimal-ui`,
38
-
icon: `src/assets/images/coderbunker-icon.png`,// This path is relative to the root of the site.
46
+
icon: `${__dirname}/src/assets/images/coderbunker-icon.png`,// This path is relative to the root of the site.
39
47
},
40
48
},
41
-
`gatsby-plugin-gatsby-cloud`,
42
-
// this (optional) plugin enables Progressive Web App + Offline functionality
43
-
// To learn more, visit: https://gatsby.dev/offline
0 commit comments