I added a new theme to ghost cms, It displays in the listing on my local machine, but on my heroku instance I cant see it in the list of available themes.
Is there a way to restart Ghost in heroku, or a way of forcing it to appear? Ive tried restarting the dynos, and redeploying to no avail.
@chris I solved the issue, it turns out my content path in config.production.json was wrong. It wasnt looking in the right place for the themes
it was
"paths": {
"contentPath": "content/"
},
and it needed to be
"paths": {
"contentPath": "content"
},