Files
vercel/examples/gatsby/gatsby-config.js
Andy 0c6c6677a7 [examples] Make -functions example the default (#3541)
* Remove now-examples references

* Adjust gatsby example

* Adjust svelte example

* Adjust vanilla example
2020-01-10 12:48:45 +01: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: 'Gatbsy + Node.js (TypeScript)',
start_url: '/',
icon: 'src/images/gatsby-icon.png',
},
},
],
};