-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
52 lines (52 loc) · 1.61 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
module.exports = {
siteMetadata: {
title: "Louis Grasset - Software Engineer",
description: "Louis Grasset, Software Engineer and Freelance.",
author: "@louisgrasset",
siteUrl: `${process.env.GATSBY_SITE_URL || "https://louisgrasset.fr"}`,
name: "Louis Grasset",
},
plugins: [
"gatsby-plugin-sass",
"gatsby-plugin-postcss",
"gatsby-plugin-sharp",
"gatsby-plugin-sitemap",
"gatsby-transformer-sharp",
{
resolve: "gatsby-plugin-typescript",
options: {
isTSX: true, // defaults to false
jsxPragma: "jsx", // defaults to "React"
allExtensions: true, // defaults to false
},
},
{
resolve: "gatsby-source-filesystem",
options: {
name: "images",
path: `${__dirname}/src/images/`,
},
__key: "images",
},
{
resolve: "gatsby-plugin-manifest",
options: {
name: "Louis Grasset - Software Engineer and Freelance.",
short_name: "Louis Grasset",
start_url: "/",
background_color: "#ffffff",
theme_color: "#ffffff",
display: "fullscreen",
icon: "src/images/profile.webp",
include_favicon: true,
},
},
{
resolve: "gatsby-plugin-i18n",
options: {
langKeyDefault: "fr",
useLangKeyLayout: false,
},
},
],
};