If adding the following content to examples/react-app-blog/content/posts:
sixth-post/
pic.png
index.md # article content that references 
The "latest posts" page lists both the article and a sixth-post/pic.png post.
- I solved this by removing the
phenomic entry in package.json and creating a phenomic.config.js file with:
module.exports = {
content: {
content: {
root: "content",
globs: ["**/*.md"]
},
},
presets: ["@phenomic/preset-react-app"],
}
- The image is not copied anywhere.
- The image in the post is broken.
I feel like I'm missing something akin to gatsby-remark-copy-images and gatsby-remark-copy-linked-files, but not sure exactly what…
If adding the following content to
examples/react-app-blog/content/posts:The "latest posts" page lists both the article and asixth-post/pic.pngpost.phenomicentry inpackage.jsonand creating aphenomic.config.jsfile with:I feel like I'm missing something akin to
gatsby-remark-copy-imagesandgatsby-remark-copy-linked-files, but not sure exactly what…