Grove
Grove copied to clipboard
GET request results in 404
On line 51 of server.js
,
ROUTERS.WUP.use('/', ROUTES.WUP.main);
results in all GET requests to the server responding with HTTP error 404. I was able to fix this using:
app.use('/', ROUTES.WUP.main);
I'm not sure if this is just an issue based on how I setup the server to work on my WiiU or not. I use Charles on macOS Catalina, which I then remap geisha-wup.cdn.nintendo.net:443
to localhost:80
to allow requests to hit my server.
Had the same problem. Did the same thing you said and it worked.