Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 43 additions & 0 deletions content/deploy/sevalla.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
---
title: Sevalla
description: 'Deploy your Nuxt Application to Sevalla infrastructure.'
logoSrc: '/assets/integrations/sevalla.svg'
category: Hosting
nitroPreset: 'sevalla'
website: 'https://sevalla.com/'
---

Nuxt supports deploying on [Sevalla](https://sevalla.com/) with minimal configuration.

## Setup

1. Create a new Sevalla app following [this guide](https://docs.sevalla.com/applications/get-started/add-an-application).
2. Set the `engines.node` field in your project's `package.json` file to ensure Sevalla uses a supported version of Node.js:

```json [package.json]
{
"engines": {
"node": "22.x"
}
}
```

3. Add a run command to your `package.json` so Sevalla knows what command to run after a build:

```json [package.json]
{
"scripts": {
"start": "node .output/server/index.mjs"
}
}
```

4. Click on the **Create and Deploy** button. Sevalla will automatically build and deploy your Nuxt.js application.

Your app will be live at a Sevalla generated URL. You can also learn more about [Sevalla’s other services](https://docs.sevalla.com/), including our free [static site hosting](https://sevalla.com/static-site-hosting/).

## More options

::read-more{to="https://nitro.unjs.io/deploy/providers/sevalla" target="_blank"}
Head over **Nitro documentation** to learn more about the Sevalla deployment presets.
::
15 changes: 15 additions & 0 deletions public/assets/integrations/sevalla.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.