Esquirish
Results
1
comments of
Esquirish
I solved the redirect loop by commenting this in the server.js file: ```js app.get('*', (req, res) => { res.redirect('/public/portal.html'); }); ``` Now i can access http://:3000/portal, but i get a...