-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
37 lines (36 loc) · 879 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
37
require("dotenv").config({
path: `.env`,
});
module.exports = {
siteMetadata: {
title: `HINA KHADIM BLOGS`,
description: `Hey folks, Are you interested in knowing how to become
a professional Software Engineer or do you want to know my Coding Journey?...`,
},
plugins: [
"gatsby-plugin-typescript",
`gatsby-plugin-material-ui`,
{
resolve: `gatsby-transformer-remark`,
options: {
plugins: [
{
resolve: `gatsby-remark-prismjs`,
options: {
aliases: { sh: "bash", js: "javascript" },
showLineNumbers: true,
},
},
],
},
},
{
resolve: `gatsby-source-contentful`,
options: {
spaceId: process.env.SPACE_ID,
accessToken: process.env.ACCESS_TOKEN,
forceFullSync: true,
},
},
],
};