@Tojima, Fuminori , Firstly, apologies for the delay from over the weekend and any inconvenience with this issue.
From the issue description, I understand you have reviewed all the config, but accessing the webapp, the page is not displayed.
Regarding your issue, it seems that the issue is with the routing configuration. If you haven’t done this already, you may updating the staticwebapp.config.json file to include the correct routes for your application.
You may try updating the routes array in the staticwebapp.config.json
file to include the following route:
{
"route": "/example/*",
"serve": "/example/index.html",
"statusCode": 200
}
This should ensure that all requests to URLs starting with /example/
are served the index.html
file in the /example/
directory of your application.
Also, just to ensure, that the app_location
in the Azure DevOps Pipeline
is set to the correct path of your application.
If the issue still persists, to fetch more details - Troubleshooting deployment and runtime errors
To isolate the issue further, kindly review these docs:
- You may checkout the doc FAQ and configuration of frameworks: What frontend frameworks can be automatically built by Static Web Apps?
- Deploy Nuxt 3 sites with universal rendering on Azure Static Web Apps Kindly let us know how it goes, I'll follow-up with you further.