31 lines
756 B
TypeScript
31 lines
756 B
TypeScript
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;
|