-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.ts
56 lines (54 loc) · 1.26 KB
/
gatsby-config.ts
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
import type { GatsbyConfig, PluginRef } from 'gatsby'
const config: GatsbyConfig = {
siteMetadata: {
siteTitle: `2025`,
siteTitleAlt: `2025`,
siteHeadline: `2025`,
siteUrl: `https://gatsby-starter-emilia.vercel.app`,
siteDescription: '2025 is here.',
siteImage: `/og-image.jpg`,
siteLanguage: `en`,
author: `@torn4dom4n`,
},
plugins: [
{
resolve: `@lekoarts/gatsby-theme-emilia`,
options: {
name: `2025`,
socialMedia: [{}],
showThemeAuthor: false,
location: `Vietnam`,
},
},
{
resolve: `gatsby-plugin-sitemap`,
options: {
output: `/`,
},
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `2025`,
short_name: `2025`,
description: `2025 is here.`,
start_url: `/`,
background_color: `#fff`,
display: `standalone`,
icons: [
{
src: `/android-chrome-192x192.png`,
sizes: `192x192`,
type: `image/png`,
},
{
src: `/android-chrome-384x384.png`,
sizes: `384x384`,
type: `image/png`,
},
],
},
},
].filter(Boolean) as Array<PluginRef>,
}
export default config