forked from blocks/blocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
42 lines (42 loc) · 1 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
module.exports = {
siteMetadata: {
title: 'Blocks UI',
description:
'A JSX-based page builder for creating beautiful websites without writing code',
author: '@blocks_ui',
image:
'https://user-images.githubusercontent.com/1424573/69646923-d618b800-1025-11ea-8b0f-73286a8db5bf.png'
},
plugins: [
'gatsby-plugin-theme-ui',
'gatsby-plugin-mdx',
'gatsby-plugin-catch-links',
'gatsby-plugin-blocks',
{
resolve: 'gatsby-source-filesystem',
options: {
name: 'blocks',
path: 'packages/react/src'
}
},
{
resolve: 'gatsby-plugin-fathom',
options: {
siteId: 'ZGBAXRBH'
}
},
'gatsby-plugin-react-helmet',
{
resolve: 'gatsby-plugin-manifest',
options: {
name: 'Blocks UI',
short_name: 'Blocks',
start_url: '/',
background_color: '#fff',
theme_color: '#33e',
display: 'standalone',
icon: 'src/assets/images/favicon.png'
}
}
]
}