Skip to content

docs(nuxt): Add low version notice to all start guides #14316

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jul 10, 2025
Merged
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
28 changes: 0 additions & 28 deletions docs/platforms/javascript/guides/nuxt/manual-setup.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -18,34 +18,6 @@ description: "Learn how to manually set up Sentry in your Nuxt app and capture y

<PlatformContent includePath="getting-started-prerequisites" />

<Expandable title="Are you using Nuxt version < 3.14.0?">
Add the following overrides:

```json {tabTitle:npm} {filename:package.json}
"overrides": {
"ofetch": "^1.4.0",
"@vercel/nft": "^0.27.4"
}
```

```json {tabTitle:yarn} {filename:package.json}
"resolutions": {
"ofetch": "^1.4.0",
"@vercel/nft": "^0.27.4"
}
```

```json {tabTitle:pnpm} {filename:package.json}
"pnpm": {
"overrides": {
"ofetch": "^1.4.0",
"@vercel/nft": "^0.27.4"
}
}
```

</Expandable>

## Step 1: Install

Choose the features you want to configure, and this guide will show you how:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,31 @@ You need:
- A Sentry [account](https://sentry.io/signup/) and [project](/product/projects/)
- Your application up and running
- Nuxt version `3.7.0` or above (`3.14.0`+ recommended)

<Expandable title="Are you using Nuxt version < 3.14.0?">
Add the following overrides:

```json {tabTitle:npm} {filename:package.json}
"overrides": {
"ofetch": "^1.4.0",
"@vercel/nft": "^0.27.4"
}
```

```json {tabTitle:yarn} {filename:package.json}
"resolutions": {
"ofetch": "^1.4.0",
"@vercel/nft": "^0.27.4"
}
```

```json {tabTitle:pnpm} {filename:package.json}
"pnpm": {
"overrides": {
"ofetch": "^1.4.0",
"@vercel/nft": "^0.27.4"
}
}
```

</Expandable>