Ghost "View site" Page Not Updating With Gatsby

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:

  1. ghost start
  2. gatsby new gatsby-starter-ghost GitHub - TryGhost/gatsby-starter-ghost: A starter template to build lightning fast websites with Ghost & Gatsby
  3. Update the ghost.json file: {
    “development”: {
    “apiUrl”: “http://localhost:2368”,
    “contentApiKey”: “”
    },
    “production”: {
    “apiUrl”: “http://localhost:2368”,
    “contentApiKey”: “”
    }
    }
  4. cd gatsby-starter-ghost
  5. gatsby develop

Thanks for your help!