diff --git a/docs/content/2.guide/1.concepts/2.vuejs-development.md b/docs/content/2.guide/1.concepts/2.vuejs-development.md index c4f8c3d038b..704de5c1300 100644 --- a/docs/content/2.guide/1.concepts/2.vuejs-development.md +++ b/docs/content/2.guide/1.concepts/2.vuejs-development.md @@ -62,7 +62,7 @@ This results in faster first rendering (component creation) and updates, and les ### Smaller bundle -With Vue 3 and Nuxt 3, a focus has been put on bundle size reduction. With version 3, most of Vue’s functionality, including template directives and built-in components, is tree-shakeable. Your production bundle will not include them if you don’t use them. +With Vue 3 and Nuxt 3, a focus has been put on bundle size reduction. With version 3, most of Vue’s functionality, including template directives and built-in components, is tree-shakable. Your production bundle will not include them if you don’t use them. This way, a minimal Vue 3 application can be reduced to 12 kb gzipped. diff --git a/docs/content/2.guide/5.deploy/providers/netlify.md b/docs/content/2.guide/5.deploy/providers/netlify.md index 3c45788eb2f..f4cb565ab9f 100644 --- a/docs/content/2.guide/5.deploy/providers/netlify.md +++ b/docs/content/2.guide/5.deploy/providers/netlify.md @@ -20,7 +20,7 @@ Normally, the deployment to Netlify does not require any configuration. Nuxt wil To trigger a deploy, just push to your git repository [as you would normally do for Netlify](https://docs.netlify.com/configure-builds/get-started/). -By default, Nuxt will server-render each page on server hit using [Netlify Functions](https://docs.netlify.com/functions/overview/). You can optionaly configure deployment to use [Netlify Edge Functions](https://docs.netlify.com/netlify-labs/experimental-features/edge-functions/) or [Netlify On-demand Builders](https://docs.netlify.com/configure-builds/on-demand-builders/). +By default, Nuxt will server-render each page on server hit using [Netlify Functions](https://docs.netlify.com/functions/overview/). You can optionally configure deployment to use [Netlify Edge Functions](https://docs.netlify.com/netlify-labs/experimental-features/edge-functions/) or [Netlify On-demand Builders](https://docs.netlify.com/configure-builds/on-demand-builders/). ## Netlify Edge Functions diff --git a/docs/content/2.guide/6.going-further/5.esm.md b/docs/content/2.guide/6.going-further/5.esm.md index 3903ba80c75..2aa42d50d4e 100644 --- a/docs/content/2.guide/6.going-further/5.esm.md +++ b/docs/content/2.guide/6.going-further/5.esm.md @@ -193,7 +193,7 @@ import { default as pkg } from 'cjs-pkg' import('cjs-pkg').then(m => m.default || m).then(console.log) ``` -For handling more complex situations and more safety, we recommand and internally use [mlly](https://github.com/unjs/mlly) in Nuxt 3 that can preserve named exports. +For handling more complex situations and more safety, we recommend and internally use [mlly](https://github.com/unjs/mlly) in Nuxt 3 that can preserve named exports. ```js import { interopDefault } from 'mlly' diff --git a/docs/content/5.community/3.contribution.md b/docs/content/5.community/3.contribution.md index 5869d578cc0..3df7dff8f04 100644 --- a/docs/content/5.community/3.contribution.md +++ b/docs/content/5.community/3.contribution.md @@ -77,7 +77,7 @@ After making your changes: ### Linting docs -Documentation is linted using [MarkdownLint](https://github.com/DavidAnson/markdownlint/) and [case police](https://github.com/antfu/case-police) to to keep the documentation cohesive. +Documentation is linted using [MarkdownLint](https://github.com/DavidAnson/markdownlint/) and [case police](https://github.com/antfu/case-police) to keep the documentation cohesive. ### Writing tips diff --git a/docs/content/migration/20.module-authors.md b/docs/content/migration/20.module-authors.md index 3c5c0f2ba84..acff3be0294 100644 --- a/docs/content/migration/20.module-authors.md +++ b/docs/content/migration/20.module-authors.md @@ -9,7 +9,7 @@ head.titleTemplate: '' Nuxt 3 has a basic backward compatibility layer for Nuxt 2 modules using `@nuxt/kit` auto wrappers. But there are usually steps to follow to make modules compatible with Nuxt 3 and sometimes, using Nuxt Bridge is required for cross-version compatibility. -We have prepared a [Dedicated Guide](/guide/going-further/modules) for authoring Nuxt 3 ready modules using `@nuxt/kit`. Currently best migration path is to follow it and rewrite your modules. Rest of this guide includes preparation steps if you prefer to avoid a full rewrite yet making modules compatibile with Nuxt 3. +We have prepared a [Dedicated Guide](/guide/going-further/modules) for authoring Nuxt 3 ready modules using `@nuxt/kit`. Currently best migration path is to follow it and rewrite your modules. Rest of this guide includes preparation steps if you prefer to avoid a full rewrite yet making modules compatible with Nuxt 3. ::alert You can check for a list of Nuxt 3 ready modules from [Nuxt Modules](https://modules.nuxtjs.org/?version=3.x).