Files
shields/gatsby-config.js
chris48s 87f40f5ace delete eslint-plugin-standard, update eslint-config-standard and eslint; affects [github jira scoop] (#5889)
* delete eslint-plugin-standard, update eslint-config-standard and eslint

* update code for new eslint rules

* Update services/jira/jira-sprint.service.js

Co-authored-by: Paul Melnikow <github@paulmelnikow.com>
Co-authored-by: repo-ranger[bot] <39074581+repo-ranger[bot]@users.noreply.github.com>
2020-12-01 19:37:54 +00:00

34 lines
971 B
JavaScript

'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, 'frontend', '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`,
// },
// },
],
}