forked from badges/shields
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
33 lines (31 loc) · 959 Bytes
/
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
'use strict'
const path = require('path')
module.exports = {
siteMetadata: {
title: 'Shields.io: Quality metadata badges for open source projects',
description:
'We serve fast and scalable informational images as badges for GitHub, Travis CI, Jenkins, WordPress and many more services. Use them to track the state of your projects, or for promotional purposes.',
author: '@shields_io',
},
plugins: [
{
resolve: 'gatsby-plugin-page-creator',
options: {
path: path.join(__dirname, 'pages'),
},
},
'gatsby-plugin-react-helmet',
'gatsby-plugin-catch-links',
'gatsby-plugin-styled-components',
'gatsby-plugin-remove-trailing-slashes',
'gatsby-plugin-typescript',
// This currently is not being used.
// {
// resolve: 'gatsby-source-filesystem',
// options: {
// name: 'static',
// path: `${__dirname}/frontend/static`,
// },
// },
],
}