-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
57 lines (57 loc) · 1.57 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
53
54
55
56
57
module.exports = {
siteMetadata: {
title: 'Persian Simple Icons',
description: '40+ free SVG icons for persian popular brands',
siteUrl: `http://localhost:8000`
},
plugins: [
'gatsby-plugin-postcss',
"gatsby-plugin-react-helmet",
"gatsby-plugin-sitemap",
"gatsby-plugin-image",
"gatsby-plugin-sharp",
"gatsby-transformer-sharp",
'gatsby-plugin-mdx-frontmatter',
{
resolve: `gatsby-omni-font-loader`,
options: {
enableListener: true,
preconnect: [`https://fonts.googleapis.com`, `https://fonts.gstatic.com`],
web: [
{
name: `Open Sans`,
file: `https://fonts.googleapis.com/css2?family=Dosis:[email protected]&family=Vazirmatn:[email protected]&display=swap`,
},
],
},
},
{
resolve: "gatsby-plugin-react-svg",
options: {
rule: {
include: /.*\.svg$/
}
}
},
{
resolve: 'gatsby-source-filesystem',
options: {
"name": "entries",
"path": "./entries/"
},
__key: "entries"
},
{
resolve: 'gatsby-source-filesystem',
options: {
"name": "icons",
"path": "./icons/"
},
__key: "icons"
},
{
resolve: "gatsby-transformer-remark",
options: {}
},
]
};