haysclark / gatsby-starter-casper

The Casper theme v1.4 ported to GatsbyJS

Home Page:https://haysclark.github.io/gatsby-starter-casper/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

post cover how to modify to be able use in cover image from static folder

netmoleCZ opened this issue · comments

good day can anybody suggest me how to use as cover image from static folder

@netmoleCZ I actually have been fighting with this issue myself. I've only been able to use relative urls in my .md file.

---
title: "new site"
description: "some website!"
cover: "./website-image.png"
author: "mr. t"
date: "2018-01-09T21:54:06.888Z"
category: "Foo"
slug: "woot"
tags:
-   blog
---

... your .md blog post...

website-image.png then needs to be located inside of the content folder with that blog post, not the static folder. It will be moved by Gatsby at build time. Make sure to look up 'gatsby-transformer-remark' and 'gatsby-remark-images' to learn more.