feat: initial gatsby setup

This commit is contained in:
Felix Schröter 2022-08-01 18:50:53 +02:00
parent 0452e8fa24
commit f4f421ac43
Signed by: felschr
GPG key ID: 671E39E6744C807D
9 changed files with 34983 additions and 3 deletions

31
gatsby-config.ts Normal file
View file

@ -0,0 +1,31 @@
import type { GatsbyConfig } from "gatsby";
const config: GatsbyConfig = {
siteMetadata: {
title: `felschr.com`,
siteUrl: `https://felschr.com`
},
graphqlTypegen: true,
plugins: ["gatsby-plugin-emotion", "gatsby-plugin-image", "gatsby-plugin-sitemap", {
resolve: 'gatsby-plugin-manifest',
options: {
"icon": "src/images/icon.png"
}
}, "gatsby-plugin-mdx", "gatsby-plugin-sharp", "gatsby-transformer-sharp", {
resolve: 'gatsby-source-filesystem',
options: {
"name": "images",
"path": "./src/images/"
},
__key: "images"
}, {
resolve: 'gatsby-source-filesystem',
options: {
"name": "pages",
"path": "./src/pages/"
},
__key: "pages"
}]
};
export default config;