-
-
Notifications
You must be signed in to change notification settings - Fork 88
/
Copy pathgatsby-config.js
75 lines (75 loc) · 1.77 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
module.exports = {
siteMetadata: {
title: `Statically`,
siteUrl: `https://statically.io`,
description: `Tools for optimizing your web projects.`,
author: `@staticallyio`,
},
plugins: [
{
resolve: `gatsby-source-filesystem`,
options: {
name: `blog`,
path: `${__dirname}/blog/`,
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `docs`,
path: `${__dirname}/docs/`,
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `policies`,
path: `${__dirname}/policies/`,
},
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `statically`,
short_name: `statically`,
start_url: `/`,
background_color: `#ffffff`,
display: `minimal-ui`,
icon: `static/images/branding/statically-mark.png`,
},
},
{
resolve: `gatsby-plugin-postcss`,
options: {
postCssPlugins: [
require(`postcss-import`),
require(`tailwindcss`)(`./tailwind.config.js`),
require(`autoprefixer`),
require(`cssnano`),
],
},
},
{
resolve: `gatsby-plugin-purgecss`,
options: {
tailwind: true,
purgeOnly: [`src/css/style.css`],
},
},
`gatsby-plugin-sitemap`,
{
resolve: `gatsby-plugin-umami`,
options: {
websiteId: `be7220b7-385d-4a8c-89fb-cfc0048fe0a0`,
srcUrl: `https://anila.statically.io/script.js`,
includeInDevelopment: false,
autoTrack: true,
respectDoNotTrack: true,
},
},
`gatsby-transformer-remark`,
`gatsby-plugin-netlify-cache`,
`gatsby-plugin-react-helmet`,
`gatsby-plugin-remove-generator`,
],
};