feat: initial gatsby setup
This commit is contained in:
parent
0452e8fa24
commit
f4f421ac43
9 changed files with 34983 additions and 3 deletions
31
gatsby-config.ts
Normal file
31
gatsby-config.ts
Normal 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;
|
||||
Loading…
Add table
Add a link
Reference in a new issue