Skip to content

Commit c591e02

Browse files
authored
docs(nuxt): Add low version notice to all start guides (#14316)
## DESCRIBE YOUR PR The expandable "Are you using Nuxt version < 3.14.0?" was only visible on the "Manual Setup" docs. It's now added to the prerequisite section to be included in all start guides. ## IS YOUR CHANGE URGENT? Help us prioritize incoming PRs by letting us know when the change needs to go live. - [ ] Urgent deadline (GA date, etc.): <!-- ENTER DATE HERE --> - [ ] Other deadline: <!-- ENTER DATE HERE --> - [ ] None: Not urgent, can wait up to 1 week+ ## SLA - Teamwork makes the dream work, so please add a reviewer to your PRs. - Please give the docs team up to 1 week to review your PR unless you've added an urgent due date to it. Thanks in advance for your help!
1 parent 9afd3b9 commit c591e02

File tree

2 files changed

+28
-28
lines changed

2 files changed

+28
-28
lines changed

docs/platforms/javascript/guides/nuxt/manual-setup.mdx

Lines changed: 0 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -18,34 +18,6 @@ description: "Learn how to manually set up Sentry in your Nuxt app and capture y
1818

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

21-
<Expandable title="Are you using Nuxt version < 3.14.0?">
22-
Add the following overrides:
23-
24-
```json {tabTitle:npm} {filename:package.json}
25-
"overrides": {
26-
"ofetch": "^1.4.0",
27-
"@vercel/nft": "^0.27.4"
28-
}
29-
```
30-
31-
```json {tabTitle:yarn} {filename:package.json}
32-
"resolutions": {
33-
"ofetch": "^1.4.0",
34-
"@vercel/nft": "^0.27.4"
35-
}
36-
```
37-
38-
```json {tabTitle:pnpm} {filename:package.json}
39-
"pnpm": {
40-
"overrides": {
41-
"ofetch": "^1.4.0",
42-
"@vercel/nft": "^0.27.4"
43-
}
44-
}
45-
```
46-
47-
</Expandable>
48-
4921
## Step 1: Install
5022

5123
Choose the features you want to configure, and this guide will show you how:

platform-includes/getting-started-prerequisites/javascript.nuxt.mdx

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,31 @@ You need:
55
- A Sentry [account](https://sentry.io/signup/) and [project](/product/projects/)
66
- Your application up and running
77
- Nuxt version `3.7.0` or above (`3.14.0`+ recommended)
8+
9+
<Expandable title="Are you using Nuxt version < 3.14.0?">
10+
Add the following overrides:
11+
12+
```json {tabTitle:npm} {filename:package.json}
13+
"overrides": {
14+
"ofetch": "^1.4.0",
15+
"@vercel/nft": "^0.27.4"
16+
}
17+
```
18+
19+
```json {tabTitle:yarn} {filename:package.json}
20+
"resolutions": {
21+
"ofetch": "^1.4.0",
22+
"@vercel/nft": "^0.27.4"
23+
}
24+
```
25+
26+
```json {tabTitle:pnpm} {filename:package.json}
27+
"pnpm": {
28+
"overrides": {
29+
"ofetch": "^1.4.0",
30+
"@vercel/nft": "^0.27.4"
31+
}
32+
}
33+
```
34+
35+
</Expandable>

0 commit comments

Comments
 (0)