fix: fix build issues with mdx pages

By moving all mdx under `content/`.
This commit is contained in:
Felix Schröter 2022-11-15 23:57:21 +01:00
parent 358cf17413
commit f4c0ae3ff5
Signed by: felschr
GPG key ID: 671E39E6744C807D
3 changed files with 3 additions and 3 deletions

View file

@ -50,14 +50,14 @@ const config: GatsbyConfig = {
resolve: "gatsby-source-filesystem",
options: {
name: "pages",
path: "./src/pages/"
path: "./src/content/pages/"
},
},
{
resolve: "gatsby-source-filesystem",
options: {
name: "posts",
path: "./src/posts/",
path: "./src/content/posts/",
},
}
]