Hello,
Most likely because you don't have any route for handling http:// localhost : 3000/
You have only static file handler which means this url would probably work http:// localhost: 3000 /index.html
If you want to access your web at http:// localhost : 3000/ then add this
app.get('/', function(req, res){
res.sendFile(__dirname+'/bin/index.html'); // change the path to your index.html
});
--If the reply is helpful, please Upvote and Accept as answer--
Localhost:3000 for ad b2c Unified sign up or sign in page for signup and signin user flow
Mohammed Nather Noor Mohammed (For Azure)
0
Reputation points
I am trying to implement a custom page for Azure AD b2c signup signin userflows using localhost:3000 ( Custom page URI ) using react. I am facing a few issues. i.e I am able to run the code locally and UI works perfectly fine but when i use localhost:3000 as the Custom page URI and i am facing 404 error and error in manifest row 1 and column 1.
I am not sure what is it that i am missing . Please let me know your valuable feedback
1 answer
Sort by: Most helpful
-
Limitless Technology 44,671 Reputation points
2023-02-14T15:34:58.0366667+00:00