-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
36 lines (35 loc) · 910 Bytes
/
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
/**
* Configure your Gatsby site with this file.
*
* See: https://www.gatsbyjs.com/docs/gatsby-config/
*/
module.exports = {
/* Your site config here */
// Note that the lack of a www in the url below is deliberate due to SSL cert issues when hosting with Firebase.
siteMetadata: {
title: `Tengku Naim`,
titleTemplate: `%s | Tengku Naim`,
description: `Third year computer science undergraduate who loves using data and computers to solve problems.`,
url: `https://tengkunaim.web.app`,
image: "/og.png",
},
plugins: [
{
resolve: "gatsby-plugin-react-svg",
options: {
rule: {
include: /assets/,
},
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `content`,
path: `${__dirname}/content/`,
},
},
"gatsby-transformer-remark",
"gatsby-plugin-react-helmet",
],
}