We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7cf721 commit eee5567Copy full SHA for eee5567
docs/advanced/migration.md
@@ -10,13 +10,13 @@ Please follow these steps to migrate your existing Nuxt KQL v2 project to Nuxt K
10
11
1. Uninstall the `nuxt-kql` module and install the `nuxt-kirby` module instead:
12
```bash
13
- npm uninstall nuxt-kql && npm install nuxt-kirby
+ npm uninstall nuxt-kql && npm install -D nuxt-kirby
14
15
# pnpm
16
- pnpm remove nuxt-kql && pnpm add nuxt-kirby
+ pnpm remove nuxt-kql && pnpm add -D nuxt-kirby
17
18
# yarn
19
- yarn remove nuxt-kql && yarn add nuxt-kirby
+ yarn remove nuxt-kql && yarn add -D nuxt-kirby
20
```
21
22
2. Update your `nuxt.config.ts` file to replace all instances of `kql` with `kirby`. For example, change this:
0 commit comments