Hello @Luis Simoes ,
Can you please share with us the documentation you are following? because based on this doc " The application exposes URLs like /counter and /fetchdata which map to specific routes of the application. Since this app is implemented as a single page application, each route is served the index.html file. To ensure that request for any path return index.html a fallback route is implemented in the routes.json file found in the wwwroot folder of the Client project."
Please try the below configuration to ensure that requests to any route in the app returns the index.html page:
{
"routes": [
{
"route": "/*",
"serve": "/index.html",
"statusCode": 200
}
]
}
Please keep in mind that fallback route must be listed last in your routing rules, as it catches all requests not caught by previously defined rules.
Hope that helps.
Best,
Grace