From f2c09a92f7a364ce3062f81d38ad012df5bd2b4a Mon Sep 17 00:00:00 2001 From: Sreecharan Date: Thu, 28 Apr 2022 11:34:48 +0530 Subject: [PATCH 1/5] fix: typo --- docs/content/2.guide/1.concepts/2.vuejs-development.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. From d46893b84e15ae2c7149c6fe1d1f24a5c78b518f Mon Sep 17 00:00:00 2001 From: Sreecharan Date: Thu, 28 Apr 2022 11:43:16 +0530 Subject: [PATCH 2/5] fix: typo --- docs/content/migration/20.module-authors.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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). From 77d214ae399723062a3ce8adc1fb0e7e49071ede Mon Sep 17 00:00:00 2001 From: Sreecharan Date: Thu, 28 Apr 2022 11:46:31 +0530 Subject: [PATCH 3/5] fix: typo --- docs/content/5.community/3.contribution.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From 54fda2aff8ac0ee0908cb0288fd90d4653bf06d5 Mon Sep 17 00:00:00 2001 From: Sreecharan Date: Thu, 28 Apr 2022 11:47:20 +0530 Subject: [PATCH 4/5] fix: typo --- docs/content/2.guide/6.going-further/5.esm.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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' From 94fa628d36d4a4361dbbb31eb02d78b04e725585 Mon Sep 17 00:00:00 2001 From: Sreecharan Date: Thu, 28 Apr 2022 11:48:21 +0530 Subject: [PATCH 5/5] fix: typo --- docs/content/2.guide/5.deploy/providers/netlify.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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