Skip to content

Commit dbfaa0b

Browse files
committed
chore: update docs and internal references to edge
1 parent 858777d commit dbfaa0b

9 files changed

Lines changed: 17 additions & 17 deletions

File tree

.nuxtrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
modules[]=nuxt-vitest
2-
modules[]=@nuxt/image-edge
2+
modules[]=@nuxt/image

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@
2626
Published under the [MIT License](./LICENSE)
2727

2828
<!-- Badges -->
29-
[npm-version-src]: https://img.shields.io/npm/v/@nuxt/image-edge/latest.svg?style=flat&colorA=18181B&colorB=28CF8D
30-
[npm-version-href]: https://npmjs.com/package/@nuxt/image-edge
29+
[npm-version-src]: https://img.shields.io/npm/v/@nuxt/image/latest.svg?style=flat&colorA=18181B&colorB=28CF8D
30+
[npm-version-href]: https://npmjs.com/package/@nuxt/image/v/rc
3131

3232
[npm-downloads-src]: https://img.shields.io/npm/dm/@nuxt/image.svg?style=flat&colorA=18181B&colorB=28CF8D
33-
[npm-downloads-href]: https://npmjs.com/package/@nuxt/image
33+
[npm-downloads-href]: https://npmjs.com/package/@nuxt/image/v/rc
3434

3535
[license-src]: https://img.shields.io/npm/l/@nuxt/image.svg?style=flat&colorA=18181B&colorB=28CF8D
36-
[license-href]: https://npmjs.com/package/@nuxt/image
36+
[license-href]: https://npmjs.com/package/@nuxt/image/v/rc
3737

3838
[nuxt-src]: https://img.shields.io/badge/Nuxt-18181B?logo=nuxt.js
3939
[nuxt-href]: https://nuxt.com

docs/content/2.get-started.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ Using image module in your Nuxt project is only one command away. ✨
1111
You are reading the `v1` documentation compatible with **Nuxt 3** (experimental). Check out [image.nuxtjs.org](https://image.nuxtjs.org/getting-started/installation) for **Nuxt 2** compatible version. ([Announcement](https://github.com/nuxt/image/discussions/548)).
1212
::
1313

14-
Add `@nuxt/image-edge` as a development dependency to your project:
14+
Add `@nuxt/image@rc` as a development dependency to your project:
1515

1616
::code-group
1717
```bash [yarn]
18-
yarn add --dev @nuxt/image-edge
18+
yarn add --dev @nuxt/image@rc
1919
```
2020
```bash [npm]
21-
npm install -D @nuxt/image-edge
21+
npm install -D @nuxt/image@rc
2222
```
2323
::
2424

@@ -27,7 +27,7 @@ Add the module to `modules` in your `nuxt.config`:
2727
```ts [nuxt.config.ts]
2828
export default defineNuxtConfig({
2929
modules: [
30-
'@nuxt/image-edge',
30+
'@nuxt/image',
3131
]
3232
})
3333
```
@@ -58,11 +58,11 @@ If an error occurs during installation:
5858

5959
::code-group
6060
```bash [yarn]
61-
yarn upgrade @nuxt/image-edge
61+
yarn upgrade @nuxt/image@rc
6262
```
6363

6464
```bash [npm]
65-
npm up @nuxt/image-edge
65+
npm up @nuxt/image@rc
6666
```
6767
::
6868

example/nuxt.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default defineNuxtConfig({
55
}
66
},
77
modules: [
8-
'@nuxt/image-edge'
8+
'@nuxt/image'
99
],
1010
image: {
1111
domains: [

example/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"preview": "nuxt preview"
88
},
99
"devDependencies": {
10-
"@nuxt/image-edge": "latest",
10+
"@nuxt/image": "rc",
1111
"nuxt": "latest"
1212
}
1313
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"ufo": "^1.1.2"
3939
},
4040
"devDependencies": {
41-
"@nuxt/image-edge": "link:.",
41+
"@nuxt/image": "link:.",
4242
"@nuxt/module-builder": "0.4.0",
4343
"@nuxt/test-utils": "^3.5.3",
4444
"@nuxtjs/eslint-config-typescript": "^12.0.0",

playground/nuxt.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { defineNuxtConfig } from 'nuxt/config'
22

33
export default defineNuxtConfig({
4-
modules: ['@nuxt/image-edge'],
4+
modules: ['@nuxt/image'],
55
image: {
66
inject: true,
77
domains: [

playground/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"preview": "nuxt preview"
88
},
99
"devDependencies": {
10-
"@nuxt/image-edge": "latest",
10+
"@nuxt/image": "rc",
1111
"nuxt": "latest"
1212
}
1313
}

renovate.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77
"main"
88
],
99
"ignoreDeps": [
10-
"@nuxt/image-edge"
10+
"@nuxt/image"
1111
]
1212
}

0 commit comments

Comments
 (0)