-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgatsby-config.js
59 lines (59 loc) · 1.7 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
module.exports = {
siteMetadata: {
title: `Inteo`,
description: `Award winning architecture and interior design studio template. Made by Landify.`,
siteUrl: `https://landify.design`, // Replace with your domain name
author: `@landifydesign`, // Replace with your twitter handle
},
plugins: [
`gatsby-plugin-postcss`,
`gatsby-plugin-react-helmet`,
`gatsby-plugin-image`,
`gatsby-plugin-sharp`,
`gatsby-transformer-sharp`,
`gatsby-transformer-json`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: `${__dirname}/src/images`,
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `data`,
path: `${__dirname}/src/data`,
},
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `Landify UI`,
short_name: `Landify UI`,
start_url: `/`,
background_color: `#7C3AED`,
theme_color: `#7C3AED`,
display: `minimal-ui`,
icon: `src/images/favicon.png`, // Replace with your favicon (This path is relative to the root of the site)
},
},
{
resolve: `gatsby-plugin-google-gtag`,
options: {
trackingIds: [
`GA-TRACKING_ID`, // Replace with your Google Analytics tracking ID
],
pluginConfig: {
head: true,
},
},
},
`gatsby-plugin-sitemap`,
`gatsby-plugin-robots-txt`,
`gatsby-plugin-offline`,
// Use this plugin if you are deploying you site to Gatsby Cloud
// To learn more, visit: https://www.gatsbyjs.com/docs/how-to/previews-deploys-hosting/deploying-to-gatsby-cloud/
// `gatsby-plugin-gatsby-cloud`,
],
};