You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/content/2.get-started.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,14 +11,14 @@ Using image module in your Nuxt project is only one command away. ✨
11
11
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)).
12
12
::
13
13
14
-
Add `@nuxt/image-edge` as a development dependency to your project:
14
+
Add `@nuxt/image@rc` as a development dependency to your project:
15
15
16
16
::code-group
17
17
```bash [yarn]
18
-
yarn add --dev @nuxt/image-edge
18
+
yarn add --dev @nuxt/image@rc
19
19
```
20
20
```bash [npm]
21
-
npm install -D @nuxt/image-edge
21
+
npm install -D @nuxt/image@rc
22
22
```
23
23
::
24
24
@@ -27,7 +27,7 @@ Add the module to `modules` in your `nuxt.config`:
27
27
```ts [nuxt.config.ts]
28
28
exportdefaultdefineNuxtConfig({
29
29
modules: [
30
-
'@nuxt/image-edge',
30
+
'@nuxt/image',
31
31
]
32
32
})
33
33
```
@@ -58,11 +58,11 @@ If an error occurs during installation:
0 commit comments