We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59968d9 commit 8ca7a04Copy full SHA for 8ca7a04
README.md
@@ -17,28 +17,28 @@ Read more on https://docs.hub.nuxt.com
17
18
## Quick Setup
19
20
-1. Add `@nuxt/hub` dependency to your project
+1. Add `@nuxthub/core` dependency to your project
21
22
```bash
23
# Using pnpm
24
-pnpm add @nuxt/hub
+pnpm add @nuxthub/core
25
26
# Using yarn
27
-yarn add @nuxt/hub
+yarn add @nuxthub/core
28
29
# Using npm
30
-npm install @nuxt/hub
+npm install @nuxthub/core
31
32
# Using bun
33
-npm add @nuxt/hub
+npm add @nuxthub/core
34
```
35
36
-2. Add `@nuxt/hub` to the `modules` section of `nuxt.config.ts`
+2. Add `@nuxthub/core` to the `modules` section of `nuxt.config.ts`
37
38
```js
39
export default defineNuxtConfig({
40
modules: [
41
- '@nuxt/hub'
+ '@nuxthub/core'
42
]
43
})
44
0 commit comments