Image not found
hawkins opened this issue · 5 comments
Not sure what I'm doing wrong, but the following image that shows up on GitHub does not get copied into the public folder and is thus not found when deployed:
![Screenshot of Lard 0.0.0 folder view for 'Coding'](screenshots/folder.png)
For reference, I'm testing using https://github.com/hawkins/lard 's master repo as a "no-config" test since it has no .fiddly.config or package.json
The <img>
tag is included, however, so I'm fairly positive this is user error 😅 https://public-vmbngwkvmw.now.sh
Soooo I figured out the issue:
The filsystem doesn't recognize this as path:
screenshots/folder.png
so you need to make it like so and it works well
![Screenshot of Lard 0.0.0 folder view for 'Coding'](./screenshots/folder.png)
I am actually kind of amazed that worked on Github 🤔
I just caught that myself as well, had literally typed a message to close this and everything. You're a ninja! Thanks so much.