I have created a website using R Markdown but I'm not sure which files to upload to my hosting service (I'm using nearlyfreespeech.net). In the book R Markdown : The Definitive Guide, it says :
R Markdown websites are static HTML sites that can be deployed to any standard web server. All site content (generated documents and supporting files) are copied into the
_site
directory, so deployment is simply a matter of moving that directory to the appropriate directory of a web server.
However, no such directory has been created on my system; there is only a Docs directory which contains index.html and another directory called site_libs which in turn contains directories for jquery, fonts, etc. Do I need to upload site_libs to the server together with index.html?
Thanks in advance.