It is possible to import an entire folder and subfolders of assets? (e.g. static HTML with all of its pieces, i.e. CSS, JSS. etc)
Are we talking about Vibe.d? Yes, it's possible: http://vibed.org/docs
shared static this()
{
auto router = new URLRouter;
router.get("*", serveStaticFiles("./public/"));
listenHTTP(new HTTPServerSettings, router);
}
