I’m setting up Ghost 3 with gatsby-based theme. With handlebars theme, we could navigate to /ghost and have access to the admin dashboard. What is the recommended approach to accessing admin dashboard from gatsby based theme?
As I understand, I somehow need to make admin available on some URL, say, admin.mydomain.com. Ideally, I wouldn’t want to add /ghost to the URL, I’d want the URL to directly access admin UI. This solution still requires adding /ghost part.. Any way to implement direct access to admin UI on admin.mydomain.com without adding /ghost part to the URL?
Once I do that, I could them implement a redirect inside gasby app from gatsbydomain.com/ghost to the admin.mydomain.com where my admin is available. Is it how it should be done?