-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
60 lines (59 loc) · 1.55 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
/**
* Configure your Gatsby site with this file.
*
* See: https://www.gatsbyjs.org/docs/gatsby-config/
*/
module.exports = {
siteMetadata: {
siteName: 'SUBARU TEAM BELARUS',
siteUrl: 'https://subaruteambelarus.by',
title: 'Официальный сайт клуба Субару в Беларуси',
description:
'Здесь вы можете найти новости о нашем клубе, а также узнать как с нами познакомиться поближе и не пропускать наши встречи',
},
plugins: [
'gatsby-plugin-emotion',
'gatsby-plugin-typescript',
'gatsby-transformer-sharp',
'gatsby-plugin-sharp',
'gatsby-plugin-react-helmet',
'gatsby-plugin-sitemap',
{
resolve: 'gatsby-source-filesystem',
options: { path: `./static/images/` },
},
{
resolve: 'gatsby-plugin-react-svg',
options: {
rule: {
include: /assets/,
},
},
},
{
resolve: 'gatsby-source-filesystem',
options: {
name: 'posts',
path: 'posts',
},
},
{
resolve: 'gatsby-plugin-mdx',
options: {
extensions: ['.mdx', '.md'],
defaultLayouts: {
default: require.resolve('./src/components/layouts/article.tsx'),
},
gatsbyRemarkPlugins: [
{
resolve: `gatsby-remark-images`,
options: {
maxWidth: 1280,
},
},
],
plugins: ['gatsby-remark-images'],
},
},
],
};