I want to use Azure Static Web Apps for Angular/React applications. I am a bit confused since my application will communicate with an API to fetch data that will be required to render the page. That means the pages are not static rather dynamic.
https://docs.microsoft.com/en-us/azure/static-web-apps/overview
According to this, https://www.staticapps.org/articles/defining-static-web-apps/ the JavaScript Apps which communicate with API also can be considered as Static App. Can I consider this is true for Azure Static Web App as well?
CodePudding user response:
Static Application can have APIs, Static here refers to the pages that end users would see. Static websites contain fixed number of pages and format of web page is fixed which delivers information to the client, that does not mean you can't fetch data which is displayed from the backend through APIs
In terms of Azure Static Web apps, it has built in way to build your APIs with Azure Functions.