0👍
✅
You are sending a POST
request to http://localhost:3000/
, but this is set as a GET
in your server. So try:
app.post("/", function(req, res) {
res.sendfile(__dirname + '/dist/index.html');
})
Source:stackexchange.com