-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgatsby-config.js
60 lines (60 loc) · 1.46 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
const gatsbyFeedConfig = require('./gatsby-feed-config.js')
const gatsbyMarkdownConfig = require('./gatsby-markdown-config.js')
module.exports = {
siteMetadata: {
title: 'Usubeni Fantasy',
author: 'ssshooter',
description: '次の千年へ 夢を紡いで',
siteUrl: 'https://ssshooter.com',
keywords: ['编程', '生活'],
},
jsxRuntime: 'automatic',
plugins: [
{
resolve: `gatsby-source-filesystem`,
options: {
path: `${__dirname}/src/pages`,
name: 'pages',
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `meme`,
path: `${__dirname}/src/meme/`,
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `gallery`,
path: `${__dirname}/src/gallery/`,
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `assets`,
path: `${__dirname}/src/assets/`,
},
},
gatsbyFeedConfig,
gatsbyMarkdownConfig,
'gatsby-transformer-yaml',
`gatsby-plugin-image`,
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
`gatsby-plugin-sass`,
`gatsby-plugin-sitemap`,
{
resolve: `gatsby-plugin-google-gtag`,
options: {
trackingIds: [
// Google Analytics / GA
// "AW-CONVERSION_ID", // Google Ads / Adwords / AW
// "DC-FLOODIGHT_ID", // Marketing Platform advertising products
],
},
},
],
}