---
title: Upgrade to v6
description: Upgrade from Ultracite v5 to v6 and adopt the new preset system with guidance on changed config structure and migration steps.
---

Ultracite v6 introduces framework-specific presets that give you more control over which rules apply to your project.

## What Changed

v6 introduces [framework-specific presets](/docs/configuration#framework-presets):

- [`ultracite/core`](/docs/configuration#framework-presets) - Base JavaScript/TypeScript rules
- [`ultracite/react`](/docs/configuration#framework-presets) - React-specific rules
- [`ultracite/next`](/docs/configuration#framework-presets) - Next.js-specific rules
- [`ultracite/solid`](/docs/configuration#framework-presets) - Solid.js rules
- [`ultracite/vue`](/docs/configuration#framework-presets) - Vue.js rules
- [`ultracite/svelte`](/docs/configuration#framework-presets) - Svelte rules
- [`ultracite/qwik`](/docs/configuration#framework-presets) - Qwik rules
- [`ultracite/angular`](/docs/configuration#framework-presets) - Angular HTML parser
- [`ultracite/remix`](/docs/configuration#framework-presets) - File-based routing support

## Migration

### Next.js/React Projects

Update your `biome.jsonc` to extend the appropriate presets:

```jsonc title="biome.jsonc"
{
  "extends": ["ultracite/core", "ultracite/react", "ultracite/next"],
}
```

### Non-React Projects

Switch to the core preset if you're not using React:

```jsonc title="biome.jsonc"
{
  "extends": ["ultracite/core"],
}
```

### Other Frameworks

Use the appropriate preset for your framework:

```jsonc title="biome.jsonc"
{
  // Solid.js
  "extends": ["ultracite/core", "ultracite/solid"]

  // Vue.js
  "extends": ["ultracite/core", "ultracite/vue"]

  // Svelte
  "extends": ["ultracite/core", "ultracite/svelte"]

  // Qwik
  "extends": ["ultracite/core", "ultracite/qwik"]

  // Angular
  "extends": ["ultracite/core", "ultracite/angular"]
}
```

### Multi-Framework Projects

Combine presets as needed:

```jsonc title="biome.jsonc"
{
  "extends": ["ultracite/core", "ultracite/react", "ultracite/solid"],
}
```
