I'm building a website based on a bought theme. I want to serve the theme folder so my customer can have a look at the unmodified version of theme and choose components.
With express, i can do this :
var express = require('express');
var app = express();
app.use('/theme', express.static('my_theme', {'icons': true}));
I didn't find how to do this with total.js.