mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
38 lines
1.7 KiB
Markdown
38 lines
1.7 KiB
Markdown
|
# 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
|
||
|
```
|
||
|
|
||
|
🔎 Check [the Nitro deployment](https://nitro.unjs.io/deploy/) for all possible deployment presets and providers.
|
||
|
|
||
|
## 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)
|