-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
53 lines (52 loc) · 1.3 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
require('dotenv').config();
module.exports = {
pathPrefix: '/',
siteMetadata: {
title: 'Kassel Labs',
description: 'Helping you to express your creativity and imagination with tools to create videos. Create your own opening of movies and series with our Intro Creators.',
author: '@kassellabs',
keywords: 'kassel labs, intro creator',
url: 'https://kassellabs.io',
},
plugins: [
'gatsby-plugin-react-helmet',
{
resolve: 'gatsby-source-filesystem',
options: {
name: 'images',
path: `${__dirname}/src/images`,
},
},
'gatsby-transformer-sharp',
'gatsby-plugin-sharp',
'gatsby-plugin-stylus',
{
resolve: 'gatsby-plugin-manifest',
options: {
name: 'Kassel Labs',
short_name: 'Kassel Labs',
start_url: '/',
background_color: '#141414',
theme_color: '#141414',
display: 'minimal-ui',
icon: 'src/images/favicon.png',
},
},
'gatsby-plugin-offline',
'gatsby-mdx',
{
resolve: 'gatsby-plugin-google-tagmanager',
options: {
id: 'GTM-52B49WF',
},
},
{
resolve: 'gatsby-source-sanity',
options: {
projectId: 'w8pgxsnb',
dataset: 'production',
token: process.env.SANITY_TOKEN,
},
},
],
};