mirror of
https://github.com/LukeHagar/vercel.git
synced 2025-12-10 04:22:12 +00:00
* Remove now-examples references * Adjust gatsby example * Adjust svelte example * Adjust vanilla example
18 lines
397 B
JavaScript
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',
|
|
},
|
|
},
|
|
],
|
|
};
|