Files
vercel/examples/gatsby/gatsby-config.js
2020-04-14 15:06:18 -04:00

18 lines
397 B
JavaScript

module.exports = {
siteMetadata: {
title: 'Gatsby + Node.js (TypeScript) API',
},
plugins: [
`gatsby-plugin-react-helmet`,
{
resolve: `gatsby-plugin-manifest`,
options: {
name: 'Gatsby + Node.js (TypeScript) API',
short_name: 'Gatsby + Node.js (TypeScript)',
start_url: '/',
icon: 'src/images/gatsby-icon.png',
},
},
],
};