This repository has been archived by the owner on Oct 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgatsby-config.js
66 lines (65 loc) · 1.5 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
58
59
60
61
62
63
64
65
66
/**
* Configure your Gatsby site with this file.
*
* See: https://www.gatsbyjs.com/docs/gatsby-config/
*/
module.exports = {
siteMetadata: {
title: "Tamil Wishes",
author: "Santhosh Veer",
siteUrl: "https://wishes.tamilwords.net",
},
flags: {
DEV_SSR: false,
},
plugins: [
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `Tamil Wishes`,
short_name: `Tamil Wishes`,
description: `Tamil Wishes - Tamil Festival SMS Wishes and Tamil Greetings.`,
start_url: `/`,
background_color: `#ffffff`,
theme_color: `#000000`,
display: `standalone`,
icon: `static/favicon.png`,
icon_options: {
purpose: `any maskable`,
},
legacy: true,
},
},
{
resolve: `gatsby-plugin-html-attributes`,
options: {
lang: `en`,
},
},
{
resolve: `gatsby-plugin-preconnect`,
options: {
domains: [
`https://fonts.googleapis.com`,
`https://fonts.gstatic.com`,
`https://wishes-five.vercel.app`,
`https://www.googletagmanager.com`,
`https://analytics.google.com`,
],
},
},
{
resolve: `gatsby-plugin-advanced-sitemap`,
options: {
exclude: [
`/dev-404-page`,
`/404`,
`/404.html`,
`/offline-plugin-app-shell-fallback`,
],
createLinkInHead: true,
},
},
`gatsby-plugin-react-helmet-async`,
],
}