-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.ts
40 lines (38 loc) · 922 Bytes
/
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
import type { GatsbyConfig } from 'gatsby'
const config: GatsbyConfig = {
siteMetadata: {
title: 'SupraChat: nuestro vicio es chatear 💬',
siteUrl: 'https://suprachat.net'
},
graphqlTypegen: true,
plugins: [
'gatsby-plugin-image',
'gatsby-plugin-sitemap',
{
resolve: 'gatsby-plugin-manifest',
options: {
name: 'SupraChat',
icon: 'src/images/favicon.png',
short_name: 'SupraChat',
start_url: '/',
background_color: '#001233',
theme_color: '#ffe6dd',
display: 'standalone'
}
},
'gatsby-plugin-sharp',
'gatsby-transformer-sharp',
{
resolve: 'gatsby-source-filesystem',
options: {
name: 'images',
path: './src/images/'
},
__key: 'images'
},
'gatsby-plugin-tsconfig-paths',
'gatsby-plugin-postcss'
],
jsxRuntime: 'automatic'
}
export default config