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
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.`,
4
+
title: 'Coderbunker Canada',
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`,
9
+
'gatsby-transformer-json',
10
10
11
-
`gatsby-plugin-postcss`,
12
-
`gatsby-plugin-styled-components`,
13
-
`gatsby-plugin-react-helmet`,
14
-
`gatsby-plugin-image`,
11
+
'gatsby-plugin-postcss',
12
+
'gatsby-plugin-styled-components',
13
+
'gatsby-plugin-react-helmet',
14
+
'gatsby-plugin-image',
15
15
{
16
-
resolve: `gatsby-source-filesystem`,
16
+
resolve: 'gatsby-source-filesystem',
17
17
options: {
18
-
name: `images`,
18
+
name: 'images',
19
19
path: `${__dirname}/src/assets/images`,
20
20
},
21
21
},
22
22
{
23
-
resolve: `gatsby-source-filesystem`,
23
+
resolve: 'gatsby-source-filesystem',
24
24
options: {
25
-
name: `assets`,
25
+
name: 'assets',
26
26
path: `${__dirname}/src/assets`,
27
27
},
28
28
},
29
29
{
30
-
resolve: `gatsby-source-filesystem`,
30
+
resolve: 'gatsby-source-filesystem',
31
31
options: {
32
-
name: `content`,
32
+
name: 'content',
33
33
path: `${__dirname}/src/assets/content`,
34
34
},
35
35
},
36
36
{
37
-
resolve: `gatsby-source-filesystem`,
37
+
resolve: 'gatsby-source-filesystem',
38
38
options: {
39
-
name: `locale`,
39
+
name: 'locale',
40
40
path: `${__dirname}/locales`,
41
-
}
41
+
},
42
42
},
43
-
`gatsby-transformer-sharp`,
43
+
'gatsby-transformer-sharp',
44
44
{
45
-
resolve: `gatsby-plugin-sharp`,
45
+
resolve: 'gatsby-plugin-sharp',
46
46
options: {
47
47
defaults: {
48
-
formats: [`auto`,`webp`],
49
-
placeholder: `dominantColor`,
48
+
formats: ['auto','webp'],
49
+
placeholder: 'dominantColor',
50
50
quality: 50,
51
51
breakpoints: [750,1080,1366,1920],
52
-
backgroundColor: `transparent`,
52
+
backgroundColor: 'transparent',
53
53
tracedSVGOptions: {},
54
54
blurredOptions: {},
55
55
jpgOptions: {},
@@ -60,39 +60,39 @@ module.exports = {
60
60
},
61
61
},
62
62
{
63
-
resolve: `gatsby-plugin-manifest`,
63
+
resolve: 'gatsby-plugin-manifest',
64
64
options: {
65
65
icon: `${__dirname}/src/assets/images/coderbunker-icon.png`,// This path is relative to the root of the site.
66
66
},
67
67
},
68
68
{
69
-
resolve: `gatsby-plugin-react-i18next`,
69
+
resolve: 'gatsby-plugin-react-i18next',
70
70
options: {
71
-
localeJsonSourceName: `locale`,// name given to `gatsby-source-filesystem` plugin.
72
-
languages: [`en`,`fr`],
73
-
defaultLanguage: `en`,
71
+
localeJsonSourceName: 'locale',// name given to `gatsby-source-filesystem` plugin.
72
+
languages: ['en','fr'],
73
+
defaultLanguage: 'en',
74
74
// if you are using Helmet, you must include siteUrl, and make sure you add http:https
75
-
siteUrl: `https://coderbunker.ca/`,
75
+
siteUrl: 'https://coderbunker.ca/',
76
76
// you can pass any i18next options
77
77
i18nextOptions: {
78
78
interpolation: {
79
-
escapeValue: false// not needed for react as it escapes by default
79
+
escapeValue: false,// not needed for react as it escapes by default
0 commit comments