3.2.0
This is a minor release, making it possible to provide an alternative middleware for SSR handling:
const server = serve(5050, {
path: __dirname,
proxy: 'http://localhost:6060',
ssr: function(steal, options) {
Do whatever you want here!
return function(req, res) {
};
}
});