Skip to content

Commit

Permalink
chore: fix minor typos (#124)
Browse files Browse the repository at this point in the history
  • Loading branch information
johannschopplich authored Apr 19, 2022
1 parent c0d4860 commit 7e3a959
Show file tree
Hide file tree
Showing 14 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion docs/.vitepress/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ function getDeploymentSidebar() {
['/deploy/providers/firebase', 'Firebase'],
['/deploy/providers/heroku', 'Heroku'],
['/deploy/providers/layer0', 'Layer0'],
['/deploy/providers/netlify', 'Netliy'],
['/deploy/providers/netlify', 'Netlify'],
['/deploy/providers/render', 'Render.com'],
['/deploy/providers/stormkit', 'Stormkit'],
['/deploy/providers/vercel', 'Vercel'],
Expand Down
4 changes: 2 additions & 2 deletions docs/deploy/node.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Node.js Server

**Preset:** `node-server` ([swtich to this preset](/deploy/#changing-the-deployment-preset))
**Preset:** `node-server` ([switch to this preset](/deploy/#changing-the-deployment-preset))

::: info Note
This is the default nitro output preset for production builds.
Expand Down Expand Up @@ -35,7 +35,7 @@ You can customize server behavior using following environment variables:

## Handler (advanced)

**Preset:** `node` ([swtich to this preset](/deploy/#changing-the-deployment-preset))
**Preset:** `node` ([switch to this preset](/deploy/#changing-the-deployment-preset))

Nitro also has a more low-level preset that directly exports a function with `(req, res) => {}` signuture usable for middleware and custom servers.

Expand Down
2 changes: 1 addition & 1 deletion docs/deploy/providers/aws.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# AWS Lmabda

**Preset:** `aws-lambda` ([swtich to this preset](/deploy/#changing-the-deployment-preset))
**Preset:** `aws-lambda` ([switch to this preset](/deploy/#changing-the-deployment-preset))

Nitro provides a built-in preset to generate output format compatible with [AWS Lambda](https://aws.amazon.com/lambda/).

Expand Down
2 changes: 1 addition & 1 deletion docs/deploy/providers/azure.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Azure Static Web Apps

**Preset:** `azure` ([swtich to this preset](/deploy/#changing-the-deployment-preset))
**Preset:** `azure` ([switch to this preset](/deploy/#changing-the-deployment-preset))

::: info Zero Config Provider
Integration with this provider is possible with zero configuration. ([Learn More](/deploy/#zero-config-providers))
Expand Down
2 changes: 1 addition & 1 deletion docs/deploy/providers/cloudflare.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Cloudflare

**Preset:** `cloudflare` ([swtich to this preset](/deploy/#changing-the-deployment-preset))
**Preset:** `cloudflare` ([switch to this preset](/deploy/#changing-the-deployment-preset))

Login to your [Cloudflare Workers](https://workers.cloudflare.com) account and obtain your `account_id` from the sidebar.

Expand Down
2 changes: 1 addition & 1 deletion docs/deploy/providers/digitalocean.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# DigitalOcean

**Preset:** `digitalocean` ([swtich to this preset](/deploy/#changing-the-deployment-preset))
**Preset:** `digitalocean` ([switch to this preset](/deploy/#changing-the-deployment-preset))

::: warning Work in Progress
Documentation for this section is not yet complete.
Expand Down
2 changes: 1 addition & 1 deletion docs/deploy/providers/firebase.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Firebase

**Preset:** `firebase` ([swtich to this preset](/deploy/#changing-the-deployment-preset))
**Preset:** `firebase` ([switch to this preset](/deploy/#changing-the-deployment-preset))

Nitro supports [Firebase Hosting](https://firebase.google.com/docs/hosting) with Cloud Functions out of the box.

Expand Down
2 changes: 1 addition & 1 deletion docs/deploy/providers/heroku.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Heroku

**Preset:** `heroku` ([swtich to this preset](/deploy/#changing-the-deployment-preset))
**Preset:** `heroku` ([switch to this preset](/deploy/#changing-the-deployment-preset))

::: warning Work in Progress
Documentation for this section is not yet complete.
Expand Down
2 changes: 1 addition & 1 deletion docs/deploy/providers/layer0.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Layer0

**Preset:** `layer0` ([swtich to this preset](/deploy/#changing-the-deployment-preset))
**Preset:** `layer0` ([switch to this preset](/deploy/#changing-the-deployment-preset))

::: warning Work in Progress
Documentation for this section is not yet complete.
Expand Down
6 changes: 3 additions & 3 deletions docs/deploy/providers/netlify.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Netlify

**Preset:** `netlify` ([swtich to this preset](/deploy/#changing-the-deployment-preset))
**Preset:** `netlify` ([switch to this preset](/deploy/#changing-the-deployment-preset))

::: info Zero Config Provider
Integration with this provider is possible with zero configuration. ([Learn More](/deploy/#zero-config-providers))
Expand All @@ -18,15 +18,15 @@ For deployment, just push to your git repository [as you would normally do for N

## Netlify Edge Functions

**Preset:** `netlify-edge` ([swtich to this preset](/deploy/#changing-the-deployment-preset))
**Preset:** `netlify-edge` ([switch to this preset](/deploy/#changing-the-deployment-preset))

Netlify Edge Functions use Deno and the powerful V8 JavaScript runtime to let you run globally distributed functions for the fastest possible response times. ([Read More](https://www.netlify.com/blog/announcing-serverless-compute-with-edge-functions))

Nitro output can directly run the server at the edge. Closer to your users.

## On-demand Builders

**Preset:** `netlify-builder` ([swtich to this preset](/deploy/#changing-the-deployment-preset))
**Preset:** `netlify-builder` ([switch to this preset](/deploy/#changing-the-deployment-preset))

On-demand Builders are serverless functions used to generate web content as needed that’s automatically cached on Netlify’s Edge CDN. They enable you to build pages for your site when a user visits them for the first time and then cache them at the edge for subsequent visits. ([Read More](https://docs.netlify.com/configure-builds/on-demand-builders/))

2 changes: 1 addition & 1 deletion docs/deploy/providers/render.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Render.com

**Preset:** `render-com` ([swtich to this preset](/deploy/#changing-the-deployment-preset))
**Preset:** `render-com` ([switch to this preset](/deploy/#changing-the-deployment-preset))

::: warning Work in Progress
Documentation for this section is not yet complete.
Expand Down
2 changes: 1 addition & 1 deletion docs/deploy/providers/stormkit.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Stormkit

**Preset:** `stormkit` ([swtich to this preset](/deploy/#changing-the-deployment-preset))
**Preset:** `stormkit` ([switch to this preset](/deploy/#changing-the-deployment-preset))

::: info Zero Config Provider
Integration with this provider is possible with zero configuration. ([Learn More](/deploy/#zero-config-providers))
Expand Down
2 changes: 1 addition & 1 deletion docs/deploy/providers/vercel.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Vercel

**Preset:** `vercel` ([swtich to this preset](/deploy/#changing-the-deployment-preset))
**Preset:** `vercel` ([switch to this preset](/deploy/#changing-the-deployment-preset))

::: info Zero Config Provider
Integration with this provider is possible with zero configuration. ([Learn More](/deploy/#zero-config-providers))
Expand Down
4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
home: true
sidebar: false
heroText: Nitro
tagline: Any Javascript Server, Anywhere
tagline: Any JavaScript Server, Anywhere
actionText: Get Started
actionLink: /guide/
features:
Expand All @@ -19,7 +19,7 @@ features:
- title: Code-Splitting
details: Async chunk loading for fast server startup time
- title: TypeScript
details: Typescript support out of the box with few more goodies
details: TypeScript support out of the box with few more goodies
- title: Storage Layer
details: Multi driver and platform-agnostic storage system
- title: Cache API
Expand Down

0 comments on commit 7e3a959

Please sign in to comment.