Skip to content

Commit 39e56b2

Browse files
committed
add tilde
1 parent d52893c commit 39e56b2

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

docs/platforms/javascript/common/troubleshooting/index.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -517,22 +517,22 @@ Learn more about fixing these caching issues in the <PlatformLink to="/sourcemap
517517
518518
```json {tabTitle:npm} {filename:package.json}
519519
"overrides": {
520-
"nitropack": "2.9.7",
520+
"nitropack": "~2.9.7",
521521
"@vercel/nft": "^0.27.4"
522522
}
523523
```
524524
525525
```json {tabTitle:yarn} {filename:package.json}
526526
"resolutions": {
527-
"nitropack": "2.9.7",
527+
"nitropack": "~2.9.7",
528528
"@vercel/nft": "^0.27.4"
529529
}
530530
```
531531
532532
```json {tabTitle:pnpm} {filename:package.json}
533533
"pnpm": {
534534
"overrides": {
535-
"nitropack": "2.9.7",
535+
"nitropack": "~2.9.7",
536536
"@vercel/nft": "^0.27.4"
537537
}
538538
}

docs/platforms/javascript/guides/nuxt/install/dynamic-import.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,20 +33,20 @@ We are working on figuring this out ([see issue here](https://github.com/getsent
3333

3434
```json {tabTitle:npm} {filename:package.json}
3535
"overrides": {
36-
"nitropack": "2.9.7",
36+
"nitropack": "~2.9.7",
3737
"@vercel/nft": "^0.27.4"
3838
}
3939
```
4040
```json {tabTitle:yarn} {filename:package.json}
4141
"resolutions": {
42-
"nitropack": "2.9.7",
42+
"nitropack": "~2.9.7",
4343
"@vercel/nft": "^0.27.4"
4444
}
4545
```
4646
```json {tabTitle:pnpm} {filename:package.json}
4747
"pnpm": {
4848
"overrides": {
49-
"nitropack": "2.9.7",
49+
"nitropack": "~2.9.7",
5050
"@vercel/nft": "^0.27.4"
5151
}
5252
}

0 commit comments

Comments
 (0)