This repository has been archived by the owner on Sep 7, 2020. It is now read-only.
This repository has been archived by the owner on Sep 7, 2020. It is now read-only.
Open
Description
If adding the following content to examples/react-app-blog/content/posts
:
sixth-post/
pic.png
index.md # article content that references ![](./pic.png)
The "latest posts" page lists both the article and asixth-post/pic.png
post.- I solved this by removing the
phenomic
entry inpackage.json
and creating aphenomic.config.js
file with:module.exports = { content: { content: { root: "content", globs: ["**/*.md"] }, }, presets: ["@phenomic/preset-react-app"], }
- I solved this by removing the
- 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…