-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
61 lines (61 loc) · 1.56 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
module.exports = {
siteMetadata: {
title: `Sushi Ai Manchester`,
description: `Sushi Ai Manchester has delicious sushi and Japanese cuisine. It is conveniently located in the Manchester area. We have sushi, nigiri, udon, and more with dine in, pick up, and delivery options.`,
author: `Sushi Ai`,
siteUrl: `https://sushiaimanchester.com/`,
},
plugins: [
`gatsby-plugin-react-helmet`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: `${__dirname}/src/assets/images`,
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `logo`,
path: `${__dirname}/src/assets/logo`,
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `menu`,
path: `${__dirname}/src/assets/menu`,
},
},
`gatsby-transformer-sharp`,
`gatsby-transformer-excel`,
`gatsby-plugin-sharp`,
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `sushi-ai-manchester`,
short_name: `sushi-ai`,
start_url: `/`,
background_color: `#2c271d`,
theme_color: `#2c271d`,
display: `minimal-ui`,
icon: `src/assets/logo/logo512.png`, // This path is relative to the root of the site.
},
},
{
resolve: `gatsby-plugin-styled-components`,
},
{
resolve: `gatsby-plugin-sitemap`,
options: {
excludes: ['/menu/'],
serialize: ({ path }) => {
return {
url: path,
}
},
},
},
],
}