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", resolve: "gatsby-source-filesystem",
options: { options: {
name: "pages", name: "pages",
path: "./src/pages/" path: "./src/content/pages/"
}, },
}, },
{ {
resolve: "gatsby-source-filesystem", resolve: "gatsby-source-filesystem",
options: { options: {
name: "posts", name: "posts",
path: "./src/posts/", path: "./src/content/posts/",
}, },
} }
] ]

View file

@ -2,7 +2,7 @@
title: Optimised Backups on NixOS with restic & fd title: Optimised Backups on NixOS with restic & fd
published: 2022-08-01 published: 2022-08-01
updated: 2022-08-01 updated: 2022-08-01
featuredImage: ../images/nixos-restic.png featuredImage: ../../images/nixos-restic.png
featuredImageAlt: NixOS plus Restic featuredImageAlt: NixOS plus Restic
--- ---