Estou recebendo o seguinte erro: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client Mesmo depois de implementar isso:
app.get('/livros/form', function(req, res) {
res.marko(
require('../views/livros/form/form.marko'),
{
livro: {}
}
);
});