Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: upgrade deps #1691

Merged
merged 16 commits into from
Dec 1, 2022
2 changes: 1 addition & 1 deletion docs/content/2.get-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ You can add Nuxt Content at anytime during your Nuxt project development by inst
Then, add `@nuxt/content` to the `modules` section of `nuxt.config.ts`:

```ts [nuxt.config.ts]
import { defineNuxtConfig } from 'nuxt'
import { defineNuxtConfig } from 'nuxt/config'

farnabaz marked this conversation as resolved.
Show resolved Hide resolved
export default defineNuxtConfig({
modules: [
Expand Down
2 changes: 1 addition & 1 deletion docs/content/3.guide/1.writing/7.document-driven.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ It also offers `page`, `navigation`, `surround` and `globals` variables.
Add the [`documentDriven`](/api/configuration#documentdriven) option in the `nuxt.config`:

```ts
import { defineNuxtConfig } from 'nuxt'
import { defineNuxtConfig } from 'nuxt/config'

farnabaz marked this conversation as resolved.
Show resolved Hide resolved
export default defineNuxtConfig({
modules: ['@nuxt/content'],
Expand Down
2 changes: 1 addition & 1 deletion docs/content/3.guide/3.recipes/1.sitemap.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ When using `nuxt generate`, you may want to pre-render the sitemap since the ser
You can do this using the `nitro.prerender` option in your `nuxt.config`:

```ts [nuxt.config.ts]
import { defineNuxtConfig } from 'nuxt'
import { defineNuxtConfig } from 'nuxt/config'

farnabaz marked this conversation as resolved.
Show resolved Hide resolved
export default defineNuxtConfig({
// ...
Expand Down
6 changes: 3 additions & 3 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
"generate": "nuxi generate"
},
"devDependencies": {
"@nuxt-themes/docus": "npm:@nuxt-themes/docus-edge@latest",
"@nuxt-themes/docus": "latest",
"@nuxthq/studio": "^0.2.3",
"@nuxtlabs/github-module": "npm:@nuxtlabs/github-module-edge@latest",
"@nuxtlabs/github-module": "v1.5.3",
"monaco-editor-core": "^0.34.1",
"nuxt": "^3.0.0-rc.13",
"nuxt": "v3.0.0",
"vue-plausible": "^1.3.2"
}
}