gatsby-pingbot/gatsby-config.js

25 lines
633 B
JavaScript
Raw Normal View History

2021-08-04 09:48:04 +00:00
module.exports = {
siteMetadata: {
siteUrl: "https://www.pingbot.cf",
title: "Ping Bot",
description: "Keep your apps alive on replit.com or glitch.com"
2021-08-04 09:48:04 +00:00
},
plugins: [
"gatsby-plugin-react-helmet",
2021-08-11 20:22:16 +00:00
"gatsby-plugin-transition-link",
"gatsby-plugin-sass",
{
resolve: "gatsby-plugin-manifest",
options: {
name: "pingbot",
short_name: "pingbot",
start_url: "/",
2021-08-08 20:11:43 +00:00
background_color: "#9517cf",
theme_color: "#9517cf",
display: "minimal-ui",
icon: "src/images/icon.png", // This path is relative to the root of the site.
}
2021-08-11 20:22:16 +00:00
}
2021-08-06 18:17:07 +00:00
]
2021-08-04 19:17:51 +00:00
}