-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
42 lines (41 loc) · 975 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
38
39
40
41
42
const path = require('path')
module.exports = {
siteMetadata: {
title: 'Voxylu.xyz',
siteUrl: 'https://voxylu.xyz',
},
plugins: [
'gatsby-plugin-typescript',
'gatsby-plugin-sass',
'gatsby-plugin-react-helmet',
'gatsby-transformer-remark',
{
resolve: 'gatsby-source-filesystem',
options: {
name: 'blog',
path: path.resolve(__dirname, 'src/blog'),
},
},
{
resolve: 'gatsby-plugin-manifest',
options: {
name: 'Voxylu.xyz',
short_name: 'Voxylu.xyz',
start_url: '/',
background_color: '#fff',
theme_color: '#fff',
display: 'standalone',
icon: 'src/media/icon.png', // This path is relative to the root of the site.
},
},
{
resolve: 'gatsby-plugin-sw',
options: {
swPath: 'src/sw.js',
},
},
// 'gatsby-plugin-offline',
'gatsby-plugin-netlify-cms',
'gatsby-plugin-sitemap',
],
}