2022-04-20 17:54:40 +00:00
# Deployment Presets
In addition to Node.js servers and static hosting services, a Nuxt 3 project can be deployed with several well-tested presets and minimal amount of configuration.
You can use the [Nuxt config ](/guide/directory-structure/nuxt.config ) to explicitly set the preset to use:
```js [nuxt.config.js|ts]
export default {
nitro: {
preset: 'node-server'
}
}
```
Or directly use the `NITRO_PRESET` environment variable when running `nuxt build` :
```bash
NITRO_PRESET=node-server nuxt build
```
2022-08-16 17:29:46 +00:00
🔎 Check [the Nitro deployment ](https://nitro.unjs.io/deploy ) for all possible deployment presets and providers.
2022-04-20 17:54:40 +00:00
## Supported Hosting Providers
Nuxt 3 can be deployed to several cloud providers with a minimal amount of configuration:
- :IconCloud{class="h-5 w-4 inline mb-2"} [AWS ](/guide/deploy/providers/aws )
- :LogoAzure{class="h-5 w-4 inline mb-2"} [Azure ](/guide/deploy/providers/azure )
- :LogoCloudFlare{class="h-5 w-4 inline mb-2"} [CloudFlare ](/guide/deploy/providers/cloudflare )
- :IconCloud{class="h-5 w-4 inline mb-2"} [Digital Ocean ](/guide/deploy/providers/digitalocean )
- :LogoFirebase{class="h-5 w-4 inline mb-2"} [Firebase ](/guide/deploy/providers/firebase )
- :IconCloud{class="h-5 w-4 inline mb-2"} [heroku ](/guide/deploy/providers/heroku )
- :IconCloud{class="h-5 w-4 inline mb-2"} [layer0 ](/guide/deploy/providers/layer0 )
- :LogoNetlify{class="h-5 w-4 inline mb-2"} [Netlify ](/guide/deploy/providers/netlify )
- :IconCloud{class="h-5 w-4 inline mb-2"} [Render ](/guide/deploy/providers/render )
- :IconCloud{class="h-5 w-4 inline mb-2"} [Stormkit ](/guide/deploy/providers/stormkit )
- :LogoVercel{class="h-5 w-4 inline mb-2"} [Vercel ](/guide/deploy/providers/vercel )