Home > Net >  Issues with Gatsby Shadowing
Issues with Gatsby Shadowing

Time:11-06

I am using the @lekoarts gatsby-theme-minimal-blog. You can view my code here: enter image description here

I really (really) want to give a static site generator a shot, but this feels extremely frustrating for something that should be simple, and it's discouraging me for suggesting something like this for any kind of complex project.

Any help or advice would be much appreciated.

CodePudding user response:

Try to clean .cache folder and re-run the dev. Every time you "shadow" or change the components in theme folder, you should do it.

Just run gatsby clean or npm run clean - I saw that script in your repo.

  • Related