reactMap.js 279 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 module.exports = router => { router.get("/consumer", function (req, res, next) { console.log ("Agora vai abrir a página do React Client ..."); const path = ""; res.sendFile(path.resolve(__dirname, 'client/public', 'build', 'index1.html')); }); };