-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
42 lines (42 loc) Β· 1.03 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
/**
* @type {import('gatsby').GatsbyConfig}
*/
module.exports = {
plugins: [{
resolve: `gatsby-plugin-manifest`,
options: {
name: 'NoteaBay',
short_name: 'NoteaBay',
start_url: '/',
background_color: '#000000',
theme_color: '#ffffff',
display: 'standalone',
icon: './logo.svg',
},
},
{
resolve: 'gatsby-plugin-html-attributes',
options: {
lang: 'en'
}
},
{
resolve: 'gatsby-plugin-netlify',
},
{
resolve: `gatsby-plugin-scroll-reveal-with-new-react`,
options: {
threshold: 0.3, // Percentage of an element's area that needs to be visible to launch animation
once: true, // Defines if animation needs to be launched once
disable: false, // Flag for disabling animations
}
}
],
siteMetadata: {
title: "NotesBay",
description: "Notes β’ Todos β’ AI Writing Assistant",
twitterUsername: `@notesbay`,
image: `/logo.png`,
siteUrl: `https://www.notesbay.app`,
},
}