Hi everyone, I’m currently trying to build a Gatsby front-end and Ghost CMS backend deployment locally (Mac OS). I’ve spun-up the ghost instance and I’ve also configured everything on the Gatsby side of things using instructions from here: GitHub - TryGhost/gatsby-starter-ghost: A starter template to build lightning fast websites with Ghost & Gatsby. Everything is running fine on the front-end and backend, but whenever I make updates to the sites front-end content, the actual sites design is not shown in the “View site” page?
Is this what is expected or is there a way to actually show how the site really looks and not show the default template that comes whenever you spin up Ghost?
Steps to replicate the issue:
- ghost start
- gatsby new gatsby-starter-ghost GitHub - TryGhost/gatsby-starter-ghost: A starter template to build lightning fast websites with Ghost & Gatsby
- Update the ghost.json file: {
“development”: {
“apiUrl”: “http://localhost:2368”,
“contentApiKey”: “”
},
“production”: {
“apiUrl”: “http://localhost:2368”,
“contentApiKey”: “”
}
} - cd gatsby-starter-ghost
- gatsby develop
Thanks for your help!