-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgatsby-config.js
161 lines (159 loc) · 4.06 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
/*--------------------------------------------------------*\
| ██████ ██ |
| ██ ██ ██ |
| ██ ██ ██ |
| ██████ ██ | binary : tech art
|
| Gatsby configuration.
|----------------------------------------------------------
| Copyright(C) 2021 Valeriy Novytskyy
\*---------------------------------------------------------*/
// Allow using import when requiring theme
require(`ts-node`).register({ files: true });
module.exports = {
//flags: { PRESERVE_WEBPACK_CACHE: true },
siteMetadata: {
title: `01 Binary: tech art`,
titleTemplate: `%s - 01 Binary`,
description: `Engineering and robotics projects.`,
url: `https://www.01binary.us`,
image: `/images/icon.png`,
},
plugins: [
{
resolve: `gatsby-plugin-s3`,
options: {
bucketName: 'zeroweb-dist',
},
},
{
resolve: `gatsby-plugin-styled-components`,
options: {
displayName: false,
},
},
{
resolve: `gatsby-plugin-google-gtag`,
options: {
// You can add multiple tracking ids and a pageview event will be fired for all of them.
trackingIds: [`GTM-W229RDW`],
// This object gets passed directly to the gtag config command
// This config will be shared across all trackingIds
gtagConfig: {
anonymize_ip: true,
},
// This object is used for configuration specific to this plugin
pluginConfig: {
// Puts tracking script in the head instead of the body
head: false,
// Setting this parameter is also optional
respectDNT: true,
// Avoids sending pageview hits from custom paths
exclude: [],
// Defaults to https://www.googletagmanager.com
origin: 'https://www.01binary.us',
},
},
},
{
resolve: `gatsby-plugin-anchor-links`,
options: {
offset: -100,
},
},
{
resolve: `gatsby-plugin-react-svg`,
options: {
rule: {
include: /^((?!url).)*$/,
},
},
},
{
resolve: `gatsby-plugin-image`,
},
{
resolve: `gatsby-styled-components-dark-mode`,
options: {
light: require(`${__dirname}/src/theme.ts`).lightTheme,
dark: require(`${__dirname}/src/theme.ts`).darkTheme,
},
},
{
resolve: `gatsby-plugin-manifest`,
options: {
icon: `src/images/icon.png`,
},
},
`gatsby-plugin-offline`,
`gatsby-plugin-react-helmet`,
`gatsby-remark-images`,
`gatsby-plugin-sharp`,
`gatsby-transformer-sharp`,
{
resolve: `gatsby-plugin-mdx`,
options: {
extensions: [`.md`],
gatsbyRemarkPlugins: [
`gatsby-plugin-sharp`,
{
resolve: `gatsby-remark-images`,
options: {
maxWidth: 920,
disableBgImageOnAlpha: true,
},
},
{
resolve: `gatsby-remark-embed-youtube`,
options: {
width: '100%',
height: 400,
},
},
{
resolve: `gatsby-remark-copy-linked-files`,
options: {
destinationDir: `downloads`,
},
},
`gatsby-remark-smartypants`,
{
resolve: require.resolve(`./plugins/zero-remark-gallery`),
},
],
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: `./src/images/`,
},
__key: `images`,
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `pages`,
path: `./src/pages/`,
},
__key: `pages`,
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `articles`,
path: `./src/articles/`,
},
__key: `articles`,
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `projects`,
path: `./src/projects/`,
},
__key: `projects`,
},
],
};