What you can do with Static Web Apps
Azure Static Web Apps is a service that automatically builds and deploys full stack web apps to Azure from a GitHub repository.
When you create an Azure Static Web Apps resource, Azure sets up a GitHub Actions workflow in the app’s source code repository that monitors a branch of your choice. Every time you push commits or accept pull requests into the watched branch, the GitHub Action automatically builds and deploys your app and its API to Azure.
Static web apps are commonly built using libraries and frameworks like Angular, React, Svelte, Vue, or Blazor. These apps include HTML, CSS, JavaScript, and image assets that make up the application. With a traditional web server, these assets are served from a single server alongside any required API endpoints.
With Static Web Apps, static assets are separated from a traditional web server and are instead served from points geographically distributed around the world. This distribution makes serving files much faster as files are physically closer to end users. In addition, API endpoints are hosted using a serverless architecture, which avoids the need for a full back-end server all together.
Key features
- Web hostingย for static content like HTML, CSS, JavaScript, and images.
- Integrated APIย support provided by Azure Functions.
- First-class GitHub integrationย where repository changes trigger builds and deployments.
- Globally distributedย static content, putting content closer to your users.
- Free SSL certificates, which are automatically renewed.
- Custom domainsย to provide branded customizations to your app.
- Seamless security modelย with a reverse-proxy when calling APIs, which requires no CORS configuration.
- Authentication provider integrationsย with Azure Active Directory, Facebook, Google, GitHub, and Twitter.
- Customizable authorization role definitionย and assignments.
- Back-end routing rulesย enabling full control over the content and routes you serve.
- Generated staging versionsย powered by pull requests enabling preview versions of your site before publishing.
What you can do with Static Web Apps :
- Build modern web applicationsย with JavaScript frameworks and libraries likeย Angular,ย React,ย Svelte,ย Vue, or usingย Blazorย to create WebAssembly applications, with anย Azure Functionsย back-end.
- Publish static sitesย with frameworks likeย Gatsby,ย Hugo,ย VuePress.
- Deploy web applicationsย with frameworks likeย Next.jsย andย Nuxt.js.
Follow our first demo with a react application hosted on azure static web app .






















