gatsby-pingbot/gatsby-config.js

32 lines
789 B
JavaScript

module.exports = {
siteMetadata: {
siteUrl: 'https://www.pingbot.cf',
siteName: 'Ping Bot',
description: 'Keep your apps alive on replit.com or glitch.com'
},
plugins: [
'gatsby-plugin-react-helmet',
'gatsby-plugin-transition-link',
'gatsby-plugin-sass',
'gatsby-plugin-sitemap',
{
resolve: 'gatsby-plugin-robots-txt',
options: {
configFile: 'robots-txt.config.js'
}
},
{
resolve: 'gatsby-plugin-manifest',
options: {
name: 'pingbot',
short_name: 'pingbot',
start_url: '/',
background_color: '#9517cf',
theme_color: '#9517cf',
display: 'minimal-ui',
icon: 'src/images/icon.png', // This path is relative to the root of the site.
}
}
]
}