Hi, is it possible to host gatsbyjs on shared hosting? If yes, any tutorial to do that?
Thanks! :)
Absolutely! Gatsby doesn't run server-side, so all you need is the ability to host static HTML. In that regard, any shared host should be capable.
All site assets (HTML, CSS, pre-processed images, etc.) are all stored in the public/ folder after your build completes. Take that folder and upload it to your web root.
Great to hear that!
Thanks for you explanation :) @nicholaswyoung
Most helpful comment
Absolutely! Gatsby doesn't run server-side, so all you need is the ability to host static HTML. In that regard, any shared host should be capable.
All site assets (HTML, CSS, pre-processed images, etc.) are all stored in the
public/folder after your build completes. Take that folder and upload it to your web root.