---
title: "Satori Renderer · Nuxt OG Image · Nuxt SEO"
canonical_url: "https://nuxtseo.com/docs/og-image/v5/guides/satori"
last_updated: "2026-08-16T10:00:30.941Z"
meta:
  description: "Learn how to use the Satori renderer."
  "og:description": "Learn how to use the Satori renderer."
  "og:title": "Satori Renderer · Nuxt OG Image · Nuxt SEO"
---

Nuxt SEO on GitHub

You're viewing **OG Image v5** documentation. For the latest, [~~switch to v6~~](https://nuxtseo.com/docs/og-image/getting-started/introduction).

](https://nuxtseo.com/docs/og-image/v5/getting-started/introduction)

](https://nuxtseo.com/docs/og-image/v5/api/define-og-image)

](https://nuxtseo.com/docs/og-image/v5/releases/v5)

Switch to OG Image](https://nuxtseo.com/docs/og-image/getting-started/introduction)Switch to Nuxt SEO](https://nuxtseo.com/docs/nuxt-seo/getting-started/introduction)Switch to Robots](https://nuxtseo.com/docs/robots/getting-started/introduction)Switch to Sitemap](https://nuxtseo.com/docs/sitemap/getting-started/introduction)Switch to Schema.org](https://nuxtseo.com/docs/schema-org/getting-started/introduction)Switch to Link Checker](https://nuxtseo.com/docs/link-checker/getting-started/introduction)Switch to SEO Utils](https://nuxtseo.com/docs/seo-utils/getting-started/introduction)Switch to Site Config](https://nuxtseo.com/docs/site-config/getting-started/introduction)Switch to Skew Protection](https://nuxtseo.com/docs/skew-protection/getting-started/introduction)Switch to AI Ready](https://nuxtseo.com/docs/ai-ready/getting-started/introduction)

**Core Concepts**

# **Satori Renderer**

Nuxt OG Image comes with two ways of rendering your images, the default way is using [**~~Satori~~**](https://github.com/vercel/satori).

It's not necessary to manually define the renderer as `**satori**` unless you set the default to the [**~~Chromium Renderer~~**](https://nuxtseo.com/docs/og-image/guides/chromium). Satori will be used to render images in all environments, unless you have explicitly disabled it.

```ts
export default defineNuxtConfig({
  // this is not necessary as satori is already the default
  ogImage: {
    defaults: {
      renderer: 'satori'
    }
  }
})
```

## Pros

- Fast
- Works on all environments

## Cons

- A number of limitations (see below)

## Limitations

It's important to familiarize yourself Satori with before you make more complex templates.

If you find Satori too difficult to work with, you can use the [**~~Chromium Renderer~~**](https://nuxtseo.com/docs/og-image/guides/chromium) renderer instead.

To learn more about the limitations and working around them, see:

- [**~~Styling~~**](https://nuxtseo.com/docs/og-image/guides/styling)
- [**~~Icons and Images~~**](https://nuxtseo.com/docs/og-image/guides/icons-and-images)

**Was this page helpful?**

[**Nuxt Color Mode** How to use the Nuxt OG Image module with Nuxt Color Mode.](https://nuxtseo.com/docs/og-image/v5/integrations/color-mode) [**Chromium Renderer** Learn how, when and why to use the Chromium renderer.](https://nuxtseo.com/docs/og-image/v5/guides/chromium)