-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgatsby-config.ts
More file actions
25 lines (23 loc) · 814 Bytes
/
gatsby-config.ts
File metadata and controls
25 lines (23 loc) · 814 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import type { GatsbyConfig } from 'gatsby';
const config: GatsbyConfig = {
siteMetadata: {
title: `benschulz.dev`,
siteUrl: `https://benschulz.dev`,
description: `The personal website of Ben Schulz, a software engineer working to make an impact.`,
},
// More easily incorporate content into your pages through automatic TypeScript type generation and better GraphQL IntelliSense.
// If you use VSCode you can also use the GraphQL plugin
// Learn more at: https://gatsby.dev/graphql-typegen
graphqlTypegen: true,
plugins: [
'gatsby-plugin-postcss',
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `benschulz.dev`,
icon: `src/images/site-icon.ico`, // This path is relative to the root of the site.
},
},
],
};
export default config;